You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
459 B

package com.sothr.imagetools.engine.errors;
/**
* Simple Exception
* <p/>
* Created by drew on 12/31/13.
*/
public class ImageToolsException extends Exception {
public ImageToolsException() {
super();
}
public ImageToolsException(String message) {
super(message);
}
public ImageToolsException(String message, Throwable cause) {
super(message, cause);
}
public ImageToolsException(Throwable cause) {
super(cause);
}
}