mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 20:44:03 +00:00
8a28eb1790
This reverts merge request !5
13 lines
429 B
PHP
13 lines
429 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\ControllerLogic\Exceptions;
|
|
|
|
use App\Classes\ValueObjects\Constants\HttpStatus;
|
|
|
|
final class InternalServerErrorException extends ServiceApiException {
|
|
public function __construct(?string $message = null) {
|
|
parent::__construct($message ?? 'An internal server error has occurred. Please check application logs for more information.',
|
|
HttpStatus::SERVER_ERROR);
|
|
}
|
|
}
|