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