Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/cakephp/cakephp/src/Http/Exception/UnauthorizedException.php
<?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.0.0
 * @license       https://opensource.org/licenses/mit-license.php MIT License
 */
namespace Cake\Http\Exception;

/**
 * Represents an HTTP 401 error.
 */
class UnauthorizedException extends HttpException
{
   
/**
     * {@inheritDoc}
     */
   
protected $_defaultCode = 401;

   
/**
     * Constructor
     *
     * @param string|null $message If no message is given 'Unauthorized' will be the message
     * @param int $code Status code, defaults to 401
     * @param \Exception|null $previous The previous exception.
     */
   
public function __construct($message = null, $code = null, $previous = null)
    {
        if (empty(
$message)) {
           
$message = 'Unauthorized';
        }
       
parent::__construct($message, $code, $previous);
    }
}