phapi/exception

View on GitHub
src/Phapi/Exception/Unauthorized.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phapi\Exception;

use Phapi\Exception;

/**
 * Class Unauthorized
 *
 * Response code 401
 *
 * Authentication credentials were missing or incorrect.
 *
 * @category Phapi
 * @package  Phapi\Exception
 * @author   Peter Ahinko <peter@ahinko.se>
 * @license  MIT (http://opensource.org/licenses/MIT)
 * @link     https://github.com/phapi/exception
 */
class Unauthorized extends Exception
{

    /**
     * Response status code
     *
     * @var int
     */
    protected $statusCode = 401;

    /**
     * Response status message
     *
     * @var string
     */
    protected $statusMessage = 'Unauthorized';

    /**
     * Error message
     *
     * @var string
     */
    protected $description = 'Authentication credentials were missing or incorrect.';
}