Files
portal/app/Classes/Exceptions/InternalServerErrorException.php
T
2021-06-17 20:12:08 +08:00

13 lines
405 B
PHP

<?php
namespace App\Classes\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);
}
}