/** * @author PoisonSoft * * To change this generated comment edit the template variable "typecomment": * Window>Preferences>Java>Templates. * To enable and disable the creation of type comments go to * Window>Preferences>Java>Code Generation. */ public class CacheSourceException extends Exception { /** * Constructor for CacheSourceException. */ public CacheSourceException() { super(); } /** * Constructor for CacheSourceException. * @param message */ public CacheSourceException(String message) { super(message); } /** * Constructor for CacheSourceException. * @param message * @param cause */ public CacheSourceException(String message, Throwable cause) { super(message, cause); } /** * Constructor for CacheSourceException. * @param cause */ public CacheSourceException(Throwable cause) { super(cause); } }