diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-10-28 07:40:36 +0100 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-10-28 07:40:36 +0100 |
| commit | 272bb16b2d434090008d0759e10ff28bab96cb51 (patch) | |
| tree | 2bf6a867714bc0d8888d30f5053281a21f646c0b /lib/converter/exception.php | |
| parent | 0c9b45d210a5d94b3ba219e32b73233a5a795f61 (diff) | |
| download | grauphel-272bb16b2d434090008d0759e10ff28bab96cb51.tar.gz grauphel-272bb16b2d434090008d0759e10ff28bab96cb51.zip | |
catch rendering exceptions
Diffstat (limited to 'lib/converter/exception.php')
| -rw-r--r-- | lib/converter/exception.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/converter/exception.php b/lib/converter/exception.php new file mode 100644 index 0000000..ef236a6 --- /dev/null +++ b/lib/converter/exception.php @@ -0,0 +1,30 @@ +<?php +/** + * Part of grauphel + * + * PHP version 5 + * + * @category Tools + * @package Grauphel + * @author Christian Weiske <cweiske@cweiske.de> + * @copyright 2014 Christian Weiske + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @link http://cweiske.de/grauphel.htm + */ +namespace OCA\Grauphel\Converter; + +/** + * Something went wrong during conversion + * + * @category Tools + * @package Grauphel + * @author Christian Weiske <cweiske@cweiske.de> + * @copyright 2014 Christian Weiske + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @version Release: @package_version@ + * @link http://cweiske.de/grauphel.htm + */ +class Exception extends \Exception +{ +} +?> |
