aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Exceptions
diff options
context:
space:
mode:
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();