/** * */ package pt.linkare.ant; /** * @author jpereira * */ public class InvalidPropertySpecException extends Exception { /** * */ public InvalidPropertySpecException() { super(); // TODO Auto-generated constructor stub } /** * @param message */ public InvalidPropertySpecException(String message) { super(message); // TODO Auto-generated constructor stub } /** * @param message * @param cause */ public InvalidPropertySpecException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } /** * @param cause */ public InvalidPropertySpecException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }