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