aboutsummaryrefslogtreecommitdiff
path: root/src/Phorkie/Exception/Input.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2012-04-03 20:15:57 +0200
committerChristian Weiske <cweiske@cweiske.de>2012-04-03 20:15:57 +0200
commit2b4b34a76f42841e964a549fc64c02ba4f60a3f4 (patch)
treec83a973cae8d45e01384dabe4ad33dc40c09a5d1 /src/Phorkie/Exception/Input.php
parent7dcd592544ae0b55d0e205ff83631067a0d0aa6b (diff)
downloadphorkie-2b4b34a76f42841e964a549fc64c02ba4f60a3f4.tar.gz
phorkie-2b4b34a76f42841e964a549fc64c02ba4f60a3f4.zip
rename Phorkie to phorkie (lowercase)
Diffstat (limited to 'src/Phorkie/Exception/Input.php')
-rw-r--r--src/Phorkie/Exception/Input.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/Phorkie/Exception/Input.php b/src/Phorkie/Exception/Input.php
deleted file mode 100644
index 2b675c1..0000000
--- a/src/Phorkie/Exception/Input.php
+++ /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;
- }
-}
-
-?>