You are here

class BakeryException in Bakery Single Sign-On System 7.3

Hierarchy

Expanded class hierarchy of BakeryException

File

./bakery.inc, line 357

View source
class BakeryException extends Exception {
  public $code;
  public $message;
  public $data;
  function __construct($code, $message = NULL, $data = NULL) {
    $this->code = $code;
    $this->message = $message;
    $this->data = $data;
  }

}

Members