App
ImageFileInputException.java
Go to the documentation of this file.
1 package mhr.appcore.interfaces.exceptions;
2 
3 public class ImageFileInputException extends RuntimeException {
4 
6  }
7 
8  public ImageFileInputException(String detailMessage) {
9  super(detailMessage);
10  }
11 
12  public ImageFileInputException(Throwable throwable) {
13  super(throwable);
14  }
15 
16  public ImageFileInputException(String detailMessage, Throwable throwable) {
17  super(detailMessage, throwable);
18  }
19 
20 }