App
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
appcore
src
mhr
appcore
bitmap
exceptions
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
9
public
class
BitmapAllocationException
extends
AllocationException
{
10
11
public
BitmapAllocationException
() {
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
}
Generated on Thu May 23 2013 22:10:55 for App by
1.8.3