summaryrefslogtreecommitdiff
path: root/engine/exceptions/NotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/exceptions/NotFoundException.php')
-rw-r--r--engine/exceptions/NotFoundException.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/engine/exceptions/NotFoundException.php b/engine/exceptions/NotFoundException.php
new file mode 100644
index 0000000..211106f
--- /dev/null
+++ b/engine/exceptions/NotFoundException.php
@@ -0,0 +1,9 @@
+<?php
+
+class NotFoundException extends BadMethodCallException {
+
+ public function __construct(string $message = '') {
+ parent::__construct($message, 404);
+ }
+
+} \ No newline at end of file