public function __construct($customer_id, Exception $previous = null)
 {
     parent::__construct("Customer '" . $customer_id . "' not found", 0, $previous);
 }
 public function __construct($contract_id, Exception $previous = null)
 {
     parent::__construct("Contract '" . $contract_id . "' not found", 0, $previous);
 }
Beispiel #3
0
 public function __construct($contact_id, $message = null, Exception $previous = null)
 {
     if ($message !== null) {
         $message = "Contact '" . $contact_id . "' not found";
     }
     parent::__construct($message, 0, $previous);
 }
 public function __construct($level_id, Exception $previous = null)
 {
     parent::__construct("Support Level '" . $level_id . "' not found", 0, $previous);
 }