From 72073df2c225f96889620e30c963dd807ca01a90 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 10 May 2019 23:33:25 +0200 Subject: Added better error logging and validation Co-authored-by: LarsVomMars --- src/main/kotlin/FileController.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/main/kotlin/FileController.kt') 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.") } } -- cgit v1.2.3