for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Napp\Core\Api\Exceptions\Exceptions;
/**
* Class ApiInternalCallValidationException.
*/
class ApiInternalCallValidationException extends \Exception
{
* @var array
protected $input;
protected $errors;
* @param array $input
* @param array $errors
public function __construct(array $input, array $errors)
parent::__construct();
$this->input = $input;
$this->errors = $errors;
}
* @return array
public function getInput()
return $this->input;
public function getErrors()
return $this->errors;