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