d2d.emegrendeles.hu/app/Exceptions/MethodNotAllowedHttpAPIException.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

29 lines
522 B
PHP

<?php
namespace app\Exceptions;
use Flugg\Responder\Exceptions\Http\HttpException;
/**
* An exception thrown whan a relation is not found.
*
* @author Alexander Tømmerås <flugged@gmail.com>
* @license The MIT License
*/
class MethodNotAllowedHttpAPIException extends HttpException
{
/**
* An HTTP status code.
*
* @var int
*/
protected $status = 405;
/**
* An error code.
*
* @var string|null
*/
protected $errorCode = 'MethodNotAllowedHttpException';
}