class MerciException in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3
@file Contains EntityValidatorException.
Hierarchy
- class \MerciException extends \Exception
Expanded class hierarchy of MerciException
File
- merci_core/
includes/ MerciException.php, line 8 - Contains EntityValidatorException.
View source
class MerciException extends Exception {
protected $field;
protected $delta;
protected $data;
function __construct($msg, $field = '', $data = array()) {
parent::__construct($msg);
$this->field = $field;
$this->data = $data;
}
public function getField() {
return $this->field;
}
public function getData() {
return $this->data;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MerciException:: |
protected | property | ||
MerciException:: |
protected | property | ||
MerciException:: |
protected | property | ||
MerciException:: |
public | function | ||
MerciException:: |
public | function | ||
MerciException:: |
function |