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