rename Phorkie to phorkie (lowercase)
[phorkie.git] / src / Phorkie / Exception / Input.php
diff --git a/src/Phorkie/Exception/Input.php b/src/Phorkie/Exception/Input.php
deleted file mode 100644 (file)
index 2b675c1..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-namespace Phorkie;
-
-/**
- * Input from e.g. the URL is invalid, like a non-numeric string when one was
- * expected
- */
-class Exception_Input extends Exception
-{
-    public function __construct($msg = '', $code = 0)
-    {
-        parent::__construct($msg, $code);
-        $this->httpStatusCode = 400;
-    }
-}
-
-?>