コード例 #1
0
 public function __construct($message = "This entity cannot be found!", $code = 0, $previous = null)
 {
     parent::__construct($message, $code, $previous);
 }
コード例 #2
0
 public function __construct($violations, $message = "Something went wrong validating this Entity!", $code = 0, $previous = null)
 {
     $this->violations = $violations;
     parent::__construct($message, $code, $previous);
 }