summaryrefslogtreecommitdiffstats
path: root/3rdparty/ZendFeed/Exception
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-04 19:03:52 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-04 19:03:52 +0200
commiteae7948b3d8033224d2fda9d2b7aa7df77a73cf6 (patch)
tree9ed4628e9925f2dfd358886d2973c96e37713908 /3rdparty/ZendFeed/Exception
parent0125079c0250ae8d450e14995f419ad14df3e422 (diff)
add zend feed 3rdparty component
Diffstat (limited to '3rdparty/ZendFeed/Exception')
-rw-r--r--3rdparty/ZendFeed/Exception/BadMethodCallException.php15
-rw-r--r--3rdparty/ZendFeed/Exception/ExceptionInterface.php13
-rw-r--r--3rdparty/ZendFeed/Exception/InvalidArgumentException.php15
-rw-r--r--3rdparty/ZendFeed/Exception/RuntimeException.php15
4 files changed, 58 insertions, 0 deletions
diff --git a/3rdparty/ZendFeed/Exception/BadMethodCallException.php b/3rdparty/ZendFeed/Exception/BadMethodCallException.php
new file mode 100644
index 000000000..ef0173a5b
--- /dev/null
+++ b/3rdparty/ZendFeed/Exception/BadMethodCallException.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Zend Framework (http://framework.zend.com/)
+ *
+ * @link http://github.com/zendframework/zf2 for the canonical source repository
+ * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+
+namespace Zend\Feed\Exception;
+
+class BadMethodCallException
+ extends \BadMethodCallException
+ implements ExceptionInterface
+{}
diff --git a/3rdparty/ZendFeed/Exception/ExceptionInterface.php b/3rdparty/ZendFeed/Exception/ExceptionInterface.php
new file mode 100644
index 000000000..8abcfa9e7
--- /dev/null
+++ b/3rdparty/ZendFeed/Exception/ExceptionInterface.php
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Zend Framework (http://framework.zend.com/)
+ *
+ * @link http://github.com/zendframework/zf2 for the canonical source repository
+ * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+
+namespace Zend\Feed\Exception;
+
+interface ExceptionInterface
+{}
diff --git a/3rdparty/ZendFeed/Exception/InvalidArgumentException.php b/3rdparty/ZendFeed/Exception/InvalidArgumentException.php
new file mode 100644
index 000000000..c601ef631
--- /dev/null
+++ b/3rdparty/ZendFeed/Exception/InvalidArgumentException.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Zend Framework (http://framework.zend.com/)
+ *
+ * @link http://github.com/zendframework/zf2 for the canonical source repository
+ * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+
+namespace Zend\Feed\Exception;
+
+class InvalidArgumentException
+ extends \InvalidArgumentException
+ implements ExceptionInterface
+{}
diff --git a/3rdparty/ZendFeed/Exception/RuntimeException.php b/3rdparty/ZendFeed/Exception/RuntimeException.php
new file mode 100644
index 000000000..824a6db4d
--- /dev/null
+++ b/3rdparty/ZendFeed/Exception/RuntimeException.php
@@ -0,0 +1,15 @@
+<?php
+/**
+ * Zend Framework (http://framework.zend.com/)
+ *
+ * @link http://github.com/zendframework/zf2 for the canonical source repository
+ * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ */
+
+namespace Zend\Feed\Exception;
+
+class RuntimeException
+ extends \RuntimeException
+ implements ExceptionInterface
+{}