aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/Exception/Input.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/phorkie/Exception/Input.php')
-rw-r--r--src/phorkie/Exception/Input.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/phorkie/Exception/Input.php b/src/phorkie/Exception/Input.php
new file mode 100644
index 0000000..7f27b42
--- /dev/null
+++ b/src/phorkie/Exception/Input.php
@@ -0,0 +1,17 @@
+<?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;
+ }
+}
+
+?>