2022-06-23 02:33:43 -05:00
|
|
|
<?php
|
2022-07-16 02:25:10 -05:00
|
|
|
declare(strict_types=1);
|
2022-06-23 02:33:43 -05:00
|
|
|
|
|
|
|
namespace FireflyIII\Exceptions;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class BadHttpHeaderException extends Exception
|
|
|
|
{
|
|
|
|
public int $statusCode = 406;
|
2022-07-16 02:25:10 -05:00
|
|
|
}
|