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