We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc0cc73 commit 8cac5fdCopy full SHA for 8cac5fd
src/Exceptions/XmlException.php
@@ -0,0 +1,16 @@
1
+<?php
2
+
3
+namespace dvlpr1996\PhpEnumHelperTrait\Exceptions;
4
5
+class XmlException extends \Exception
6
+{
7
+ public function __construct(string $message, int $statusCode = 500, $previous = null)
8
+ {
9
+ parent::__construct($message . ' File Path Not Exists', $statusCode, $previous);
10
+ }
11
12
+ public function __toString(): string
13
14
+ return __CLASS__ . ' : ' . $this->message;
15
16
+}
0 commit comments