You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This kind of exception is thrown when the application encounters a critical problem. This class extends RuntimeException in order to avoid try/catch blocks
38
40
* This class forces to write to the logs immediatly to protect against swallowing exceptions.
@@ -53,7 +55,7 @@ public class AppException extends RuntimeException
53
55
publicAppException( StringstrMessage )
54
56
{
55
57
super( strMessage );
56
-
AppLogService.error( strMessage, this );
58
+
writeToLogs( );
57
59
}
58
60
59
61
/**
@@ -67,7 +69,7 @@ public AppException( String strMessage )
0 commit comments