diff options
Diffstat (limited to 'src/main/kotlin/FileController.kt')
-rw-r--r-- | src/main/kotlin/FileController.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt index 806cb59..32c9369 100644 --- a/src/main/kotlin/FileController.kt +++ b/src/main/kotlin/FileController.kt @@ -46,8 +46,7 @@ class FileController { ctx.result(FileInputStream(File(fileLocation))) } } - } catch (err: Exception) { - log.warning(err.toString()) + } catch (_: Exception) { throw NotFoundResponse("Error: File or directory does not exist.") } } |