Exceptionクラスを拡張する場合:
CustomException extends Exception(){}
throw new CustomException("Houston we have a problem",1);
エラー:
SCREAM: Error suppression ignored for
Uncaught exception 'CustomException' with message 'Houston we have a problem' in C:\wamp\www\index.php on line 5
CustomException: Houston we have a problem in C:\wamp\www\index on line 5
CustomExceptionメッセージのみが必要です。
CustomException: Houston we have a problem in C:\wamp\www\index on line 5
これは可能ですか?xdebugの問題ですか?ありがとう。