From ce3089e106183c7a754691786055ef1a14a9533d Mon Sep 17 00:00:00 2001 From: Benjamin Perche Date: Wed, 2 Jul 2014 14:18:40 +0200 Subject: [PATCH] Add exceptions nouveau fichier: core/lib/Thelia/Exception/FileNotFoundException.php nouveau fichier: core/lib/Thelia/Exception/FileNotReadableException.php nouveau fichier: core/lib/Thelia/Exception/HttpUrlException.php --- .../Exception/FileNotFoundException.php | 23 +++++++++++++++++++ .../Exception/FileNotReadableException.php | 23 +++++++++++++++++++ .../lib/Thelia/Exception/HttpUrlException.php | 23 +++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 core/lib/Thelia/Exception/FileNotFoundException.php create mode 100644 core/lib/Thelia/Exception/FileNotReadableException.php create mode 100644 core/lib/Thelia/Exception/HttpUrlException.php diff --git a/core/lib/Thelia/Exception/FileNotFoundException.php b/core/lib/Thelia/Exception/FileNotFoundException.php new file mode 100644 index 000000000..ceb27f5de --- /dev/null +++ b/core/lib/Thelia/Exception/FileNotFoundException.php @@ -0,0 +1,23 @@ + + */ +class FileNotFoundException extends \Exception +{ + +} \ No newline at end of file diff --git a/core/lib/Thelia/Exception/FileNotReadableException.php b/core/lib/Thelia/Exception/FileNotReadableException.php new file mode 100644 index 000000000..e88aa6441 --- /dev/null +++ b/core/lib/Thelia/Exception/FileNotReadableException.php @@ -0,0 +1,23 @@ + + */ +class FileNotReadableException extends \Exception +{ + +} \ No newline at end of file diff --git a/core/lib/Thelia/Exception/HttpUrlException.php b/core/lib/Thelia/Exception/HttpUrlException.php new file mode 100644 index 000000000..18088a474 --- /dev/null +++ b/core/lib/Thelia/Exception/HttpUrlException.php @@ -0,0 +1,23 @@ + + */ +class HttpUrlException extends \Exception +{ + +} \ No newline at end of file