Files
luos/workflow/engine/classes/ApplicationWithoutDelegationRecordsException.php
hjonathan 4b3cf61a79 remove comments
remove

rename

rename
2017-08-11 14:50:29 -04:00

22 lines
534 B
PHP

<?php
/**
* Application without Delegations exception
*/
class ApplicationWithoutDelegationRecordsException extends Exception
{
// Redefine the exception so message isn't optional
public function __construct($message, $code = 0)
{
// some code
// make sure everything is assigned properly
parent::__construct($message, $code);
}
// custom string representation of object
public function __toString()
{
return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
}
}