aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Exceptions
diff options
context:
space:
mode:
authorMarvin Borner2018-07-08 17:14:26 +0200
committerMarvin Borner2018-07-08 17:14:26 +0200
commit2b7e31ffa79f508453bc5c759a7511e476cbbe96 (patch)
tree209ea7974323b0b9270090f4f993ffb1a77085bd /app/Exceptions
parent8ba38dcf7fbd96a6f13639057e045eba114e2f39 (diff)
Added basic blockchain-like hashing for verified data
Diffstat (limited to 'app/Exceptions')
-rw-r--r--app/Exceptions/Handler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php
index 0e458d9..987fc82 100644
--- a/app/Exceptions/Handler.php
+++ b/app/Exceptions/Handler.php
@@ -52,7 +52,7 @@ class Handler extends ExceptionHandler
$statusCode = $exception->getStatusCode();
switch ($statusCode) {
case '404':
- $codeMessage = 'Page could not be found';
+ $codeMessage = 'Page could not be found.';
}
$errorMessage = $exception->getMessage() == '' ? ($codeMessage ? $codeMessage : 'An unknown error occurred.') : $exception->getMessage();