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
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Classes\Exceptions;
use Exception;
use Illuminate\Support\Facades\Log;
class ErrorException extends Exception {
/**
* ErrorException constructor.
*
* @param string $message
* @param int $code
*/
public function __construct(string $message, int $code = 0) {
parent::__construct($message, $code);
}
}