aboutsummaryrefslogtreecommitdiff
path: root/src/Phorkie/Exception/NotFound.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Phorkie/Exception/NotFound.php')
-rw-r--r--src/Phorkie/Exception/NotFound.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Phorkie/Exception/NotFound.php b/src/Phorkie/Exception/NotFound.php
deleted file mode 100644
index a62d1f1..0000000
--- a/src/Phorkie/Exception/NotFound.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-namespace Phorkie;
-
-/**
- * Something could not be found
- */
-class Exception_NotFound extends Exception
-{
- public function __construct($msg = '', $code = 0)
- {
- parent::__construct($msg, $code);
- $this->httpStatusCode = 404;
- }
-}
-
-?>