aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/FileController.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-05-10 23:33:25 +0200
committerMarvin Borner2019-05-10 23:33:25 +0200
commit72073df2c225f96889620e30c963dd807ca01a90 (patch)
treec9469d05c358e38f10c983f63d332afcece37b19 /src/main/kotlin/FileController.kt
parent30ff9ecdd80f64b6eb6688bc8e688ed230fa55af (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.kt3
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.")
}
}