mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-09-01 10:53:58 +00:00
Major incomplete Change
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes\Exceptions\Common;
|
||||
|
||||
use Exception;
|
||||
|
||||
class ErrorException extends Exception {
|
||||
/** @var bool */
|
||||
protected $writeExceptionToLog = true;
|
||||
|
||||
/**
|
||||
* ErrorException constructor.
|
||||
*
|
||||
* @param string $message
|
||||
* @param int $code
|
||||
*/
|
||||
public function __construct(string $message, int $code = 0) {
|
||||
parent::__construct($message, $code);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user