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