Initial commit

This commit is contained in:
omair saleh
2020-05-11 14:43:49 +08:00
commit 4b1930b9ee
776 changed files with 266655 additions and 0 deletions
@@ -0,0 +1,12 @@
<?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);
}
}