2017-09-02 21:35:33 -05:00
|
|
|
<?php
|
|
|
|
|
|
2024-03-12 22:39:16 -04:00
|
|
|
namespace App\Exceptions\Http\Server;
|
2017-09-02 21:35:33 -05:00
|
|
|
|
2024-03-12 22:39:16 -04:00
|
|
|
use App\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()
|
|
|
|
|
{
|
2026-06-22 17:58:39 +09:00
|
|
|
parent::__construct(trans('exceptions.server.file_too_large'));
|
2020-04-06 21:59:14 -07:00
|
|
|
}
|
2017-09-02 21:35:33 -05:00
|
|
|
}
|