phapi/exception

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phapi\Exception;

use Phapi\Exception;

/**
 * Class Internal Server Error
 *
 * Response code 500
 *
 * Something is broken.
 *
 * @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 InternalServerError extends Exception
{
    /**
     * Response status code
     *
     * @var int
     */
    protected $statusCode = 500;

    /**
     * Response status message
     *
     * @var string
     */
    protected $statusMessage = 'Internal Server Error';

    /**
     * Error message
     *
     * @var string
     */
    protected $description =
        'An internal server error occurred. Please try again within a few minutes. The error has been logged and we have been notified about the problem and we will fix it as soon as possible.';
}