You are here

function MerciException::__construct in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

File

merci_core/includes/MerciException.php, line 15
Contains EntityValidatorException.

Class

MerciException
@file Contains EntityValidatorException.

Code

function __construct($msg, $field = '', $data = array()) {
  parent::__construct($msg);
  $this->field = $field;
  $this->data = $data;
}