aboutsummaryrefslogtreecommitdiffhomepage
path: root/WpfTest/HttpReturnStatus/NoHandlerFound.php
diff options
context:
space:
mode:
authorwinter2024-12-07 21:44:42 +0000
committerwinter2024-12-07 21:44:42 +0000
commita84232811dadccf7047424f27340a7f9847bedff (patch)
treea6a0823c8b9485b6a5b60ea7ae854f9511a6ae1e /WpfTest/HttpReturnStatus/NoHandlerFound.php
parente1ad307b531c27ec6bfaf8b4d018991b0d4a78f3 (diff)
many many changes but actors are loaded from db now
Diffstat (limited to 'WpfTest/HttpReturnStatus/NoHandlerFound.php')
-rw-r--r--WpfTest/HttpReturnStatus/NoHandlerFound.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/WpfTest/HttpReturnStatus/NoHandlerFound.php b/WpfTest/HttpReturnStatus/NoHandlerFound.php
deleted file mode 100644
index d914ca2..0000000
--- a/WpfTest/HttpReturnStatus/NoHandlerFound.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-namespace WpfTest\HttpReturnStatus;
-
-use WpfTest\HttpReturnStatus;
-
-class NoHandlerFound extends \Exception implements HttpReturnStatus {
- public function __construct(string $path) {
- $this->message = "No handler found for path $path";
- }
-
- public function httpCode(): int {
- return 404;
- }
-
- public function httpReason(): string {
- return "Not Found";
- }
-} \ No newline at end of file