/* * Created on Jun 11, 2004 * * To change the template for this generated file go to * Window - Preferences - Java - Code Generation - Code and Comments */ package net.sourceforge.fenixedu.applicationTier.Servico.exceptions; import com.linkare.commons.metainfo.Linkare; /** * @author TJBF & PFON * * To change the template for this generated type comment go to Window - * Preferences - Java - Code Generation - Code and Comments */ public class NotExistingServiceException extends FenixServiceException { /** * */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public NotExistingServiceException() { super(); } /** * @param errorType */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public NotExistingServiceException(int errorType) { super(errorType); } /** * @param s */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public NotExistingServiceException(String s) { super(s); } /** * @param cause */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public NotExistingServiceException(Throwable cause) { super(cause); } /** * @param message * @param cause */ @Linkare(author = "Paulo Zenida", comments = "Removed the TODO statement") public NotExistingServiceException(String message, Throwable cause) { super(message, cause); } @Override public String toString() { String result = "[NotExistingServiceException\n"; result += "message" + this.getMessage() + "\n"; result += "cause" + this.getCause() + "\n"; result += "]"; return result; } }