diff options
author | Marvin Borner | 2019-05-10 23:33:25 +0200 |
---|---|---|
committer | Marvin Borner | 2019-05-10 23:33:25 +0200 |
commit | 72073df2c225f96889620e30c963dd807ca01a90 (patch) | |
tree | c9469d05c358e38f10c983f63d332afcece37b19 /src/main/kotlin/FileController.kt | |
parent | 30ff9ecdd80f64b6eb6688bc8e688ed230fa55af (diff) |
Added better error logging and validation
Co-authored-by: LarsVomMars <lars@kroenner.eu>
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.") } } |