Initial setup

This commit is contained in:
Fairuz
2021-06-17 20:12:08 +08:00
commit ee1a7a12cc
247 changed files with 29192 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace App\Classes\Exceptions;
use Exception;
class ErrorException extends Exception {
/**
* ErrorException constructor.
*
* @param string $message
* @param int $code
*/
public function __construct(string $message, int $code = 0) {
parent::__construct($message, $code);
}
}