Errors
\nn\t3::Errors()
Output errors and exceptions
Overview of Methods
\nn\t3::Errors()->Error($message, $code = NULL);
Throw an error with backtrace
\nn\t3::Errors()->Error('Damn', 1234);
Copied!
Is an alias to:
\nn\t3::Error('Damn', 1234);
Copied!
| @return void
\nn\t3::Errors()->Exception($message, $code = NULL);
Throw a Typo3 exception with backtrace
\nn\t3::Errors()->Exception('Damn', 1234);
Copied!
Is an alias to:
\nn\t3::Exception('Damn', 1234);
Copied!
| @return void