added some useful models and controllers
This commit is contained in:
parent
a6873ee6c8
commit
57c0436f14
45 changed files with 6456 additions and 0 deletions
16
library/DidgeridooArtwork/Exception.php
Normal file
16
library/DidgeridooArtwork/Exception.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue