Source for file usertrackException.php
Documentation is available at usertrackException.php
// Redefine the exception so message isn't optional
// make sure everything is assigned properly
parent::__construct($message, $code);
// custom string representation of object
return __CLASS__ . ": [{$this->code}]: { $this->message}\n ";
|