package net.thesocialos.shared.exceptions; @SuppressWarnings("serial") public class ImageNotFoundException extends Exception { public ImageNotFoundException() { // TODO Auto-generated constructor stub } public ImageNotFoundException(String message) { super(message); // TODO Auto-generated constructor stub } public ImageNotFoundException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public ImageNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { // super(message, cause, enableSuppression, writableStackTrace); // TODO Auto-generated constructor stub } public ImageNotFoundException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }