mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 20:44:01 +00:00
12 lines
294 B
PHP
12 lines
294 B
PHP
<?php
|
|
|
|
namespace App\Classes\Exceptions;
|
|
|
|
abstract class ServiceApiException extends ErrorException {
|
|
|
|
public function __construct(string $message, int $httpStatusCode = 500) {
|
|
parent::__construct($message, $httpStatusCode);
|
|
$this->httpStatusCode = $httpStatusCode;
|
|
}
|
|
}
|