$_attributes
$_attributes : array
Array of attributes that are passed in from the constructor, and made available in the view when a development error is displayed.
Represents an HTTP 503 error.
All HTTP status/error related exceptions should extend this class so catch blocks can be specifically typed.
You may also use this as a meaningful bridge to Cake\Core\Exception\Exception, e.g.: throw new \Cake\Network\Exception\HttpException('HTTP Version Not Supported', 505);
__construct(string|null $message = null, integer $code = null, \Exception|null $previous = null)
Constructor
string|null | $message | If no message is given 'Service Unavailable' will be the message |
integer | $code | Status code, defaults to 503 |
\Exception|null | $previous | The previous exception. |
responseHeader(string|array|null $header = null, string|null $value = null) : array
Get/set the response header to be used
See also Cake\Http\Response::withHeader()
string|array|null | $header | An array of header strings or a single header string
|
string|null | $value | The header value. |
<?php
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @since 3.1.7
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Exception;
/**
* Represents an HTTP 503 error.
*/
class ServiceUnavailableException extends HttpException
{
/**
* {@inheritDoc}
*/
protected $_defaultCode = 503;
/**
* Constructor
*
* @param string|null $message If no message is given 'Service Unavailable' will be the message
* @param int $code Status code, defaults to 503
* @param \Exception|null $previous The previous exception.
*/
public function __construct($message = null, $code = null, $previous = null)
{
if (empty($message)) {
$message = 'Service Unavailable';
}
parent::__construct($message, $code, $previous);
}
}