seinheit.ch/library/DidgeridooArtwork/Exception.php
2013-07-08 21:02:22 +02:00

16 lines
No EOL
274 B
PHP

<?php
class DidgeridooArtwork_Exception extends Katharsis_Exception
{
protected $_important = false;
public function __construct($message, $important = false)
{
$this->_important = $important;
parent::__construct($message);
}
public function handle()
{
}
}