diff options
author | Thomas Lange <code@nerdmind.de> | 2017-03-29 15:49:47 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-03-29 15:49:47 +0200 |
commit | 2c9c42143b41a9ee316bb2d2be26aae1c426a6b2 (patch) | |
tree | 215a46ea7e1071b0cc6b5daf42de3679817bf78c /core/namespace/Post | |
parent | 008617f01c42dfbd6241be3bebcde90815c8a323 (diff) | |
download | blog-2c9c42143b41a9ee316bb2d2be26aae1c426a6b2.tar.gz blog-2c9c42143b41a9ee316bb2d2be26aae1c426a6b2.tar.xz blog-2c9c42143b41a9ee316bb2d2be26aae1c426a6b2.zip |
Item exceptions now inherit "ExceptionHandler" to benefit from the "defaultHandler" method.
Diffstat (limited to 'core/namespace/Post')
-rw-r--r-- | core/namespace/Post/Exception.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/Post/Exception.php b/core/namespace/Post/Exception.php index 516ddbe..f752bf8 100644 --- a/core/namespace/Post/Exception.php +++ b/core/namespace/Post/Exception.php @@ -1,5 +1,5 @@ <?php namespace Post; -class Exception extends \Exception {} +class Exception extends \ExceptionHandler {} ?>
\ No newline at end of file |