2017-09-02 21:35:33 -05:00
|
|
|
<?php
|
|
|
|
|
2017-09-03 16:32:52 -05:00
|
|
|
namespace Pterodactyl\Exceptions\Http\Server;
|
2017-09-02 21:35:33 -05:00
|
|
|
|
2017-09-03 16:32:52 -05:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
2017-09-02 21:35:33 -05:00
|
|
|
|
2017-09-03 16:32:52 -05:00
|
|
|
class FileSizeTooLargeException extends DisplayException
|
2017-09-02 21:35:33 -05:00
|
|
|
{
|
2020-04-06 21:59:14 -07:00
|
|
|
/**
|
|
|
|
* FileSizeTooLargeException constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct('The file you are attempting to open is too large to view in the file editor.');
|
|
|
|
}
|
2017-09-02 21:35:33 -05:00
|
|
|
}
|