App
FilterAllocationException.java
Go to the documentation of this file.
1 package mhr.appcore.filters;
2 
3 import mhr.appcore.exceptions.AllocationException;
4 import mhr.appcore.exceptions.AppFatalException;
5 
10 
12  }
13 
14  public FilterAllocationException(String detailMessage) {
15  super(detailMessage);
16  }
17 
18  public FilterAllocationException(Throwable throwable) {
19  super(throwable);
20  }
21 
22  public FilterAllocationException(String detailMessage, Throwable throwable) {
23  super(detailMessage, throwable);
24  }
25 
26 }