public function __construct($message = 'MNS Exception')
 {
     parent::__construct($message);
 }
 public function __construct($message = 'Serializer Exception')
 {
     parent::__construct($message);
 }
 public function __construct($message = 'Attribute Exception')
 {
     parent::__construct($message);
 }
 public function __construct($message = 'Callback Exception')
 {
     parent::__construct($message);
 }
Beispiel #5
0
 public function __construct($expectedMac, $calculatedMac)
 {
     parent::__construct("Invalid Mac expected {$expectedMac} got {$calculatedMac}");
 }