App
AppFatalException.java
Go to the documentation of this file.
1 package mhr.appcore.exceptions;
2 
8 public class AppFatalException extends RuntimeException {
9 
10  public AppFatalException() {
11  }
12 
13  public AppFatalException(String detailMessage) {
14  super(detailMessage);
15  }
16 
17  public AppFatalException(Throwable throwable) {
18  super(throwable);
19  }
20 
21  public AppFatalException(String detailMessage, Throwable throwable) {
22  super(detailMessage, throwable);
23  }
24 
25 }