Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
38b6701a
Commit
38b6701a
authored
Feb 24, 2016
by
Carsten Rose
Browse files
ErrorHandler: added info of filename and linenumber to te message text.
parent
1d2d7d80
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/exceptions/ErrorHandler.php
View file @
38b6701a
...
...
@@ -17,7 +17,7 @@ class ErrorHandler {
// This error code is not included in error_reporting
return
false
;
}
throw
new
CodeException
(
'
Catchable Error:
'
.
$message
,
$severity
,
NULL
);
throw
new
CodeException
(
"
Catchable Error
in '
$file
' on line
$line
:
"
.
$message
,
$severity
,
NULL
);
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment