for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Todd Burry <[email protected]>
* @copyright 2009-2017 Vanilla Forums Inc.
* @license MIT
*/
namespace Garden\Schema;
* An exception that was built from a {@link Validation} object.
*
* The validation object collects errors and is mutable. Once it's ready to be thrown as an exception it gets converted
* to an instance of the immutable {@link ValidationException} class.
class ValidationException extends \Exception implements \JsonSerializable {
* @var Validation
private $validation;
* Initialize an instance of the {@link ValidationException} class.
* @param Validation $validation The {@link Validation} object for the exception.
public function __construct(Validation $validation) {
$this->validation = $validation;
parent::__construct($validation->getMessage(), (int)$validation->getStatus());
}
* Specify data which should be serialized to JSON.
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php
* @return mixed data which can be serialized by <b>json_encode</b>,
* which is a value of any type other than a resource.
public function jsonSerialize() {
$errors = $this->validation->getErrors();
$message = $this->getValidation()->translate('Validation Failed');
$result = [
'message' => $message,
'status' => $this->getCode(),
'errors' => $errors
];
return $result;
* Get the validation object that contain specific errors.
* @return Validation Returns a validation object.
public function getValidation() {
return $this->validation;