Example #1
0
 public function testConstruct()
 {
     $errors = array('Another error.');
     $exception = new JsonException('My message.', $errors);
     $this->assertEquals('My message.', $exception->getMessage());
     $this->assertEquals($errors, $exception->getErrors());
 }