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 59ca39e commit c152118Copy full SHA for c152118
src/Kernel/ConfigException.php
@@ -25,7 +25,6 @@ public function get($code = 1)
25
{
26
$header = "[FloatPHPException][{$code}]";
27
$message = "{$header} Error : {$this->getError($code)}";
28
- $message .= "<br>{$header} Line : {$this->getLine()} in {$this->getFile()}";
29
if ( $this->getMessage() ) {
30
$message .= " ({$this->getMessage()})";
31
}
@@ -43,6 +42,9 @@ private function getError($code)
43
42
case 1:
44
return 'Invalid Application Configuration';
45
break;
+ case 2:
46
+ return 'Invalid Module Configuration';
47
+ break;
48
49
return 'Unknown error';
50
0 commit comments