package net.sourceforge.fenixedu.domain.exceptions.misc; import net.sourceforge.fenixedu.domain.exceptions.FenixDomainException; import com.linkare.commons.metainfo.Linkare; public class InvalidIntervalLimitsException extends FenixDomainException { public InvalidIntervalLimitsException() { super(); } /** * @param errorType */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public InvalidIntervalLimitsException(int errorType) { super(errorType); } /** * @param s */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public InvalidIntervalLimitsException(String s) { super(s); } /** * @param cause */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public InvalidIntervalLimitsException(Throwable cause) { super(cause); } /** * @param message * @param cause */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public InvalidIntervalLimitsException(String message, Throwable cause) { super(message, cause); } }