function EnforcedResponseException::__construct
Constructs a new enforced response exception.
Parameters
\Symfony\Component\HttpFoundation\Response $response: The response to be enforced.
string $message: (optional) The exception message.
int $code: (optional) A user defined exception code.
\Exception $previous: (optional) The previous exception for nested exceptions
File
- 
              core/lib/ Drupal/ Core/ Form/ EnforcedResponseException.php, line 31 
Class
- EnforcedResponseException
- Custom exception to break out of the main request and enforce a response.
Namespace
Drupal\Core\FormCode
public function __construct(Response $response, $message = "", $code = 0, \Exception $previous = NULL) {
  parent::__construct($message, $code, $previous);
  $this->response = $response;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
