/* * Created on Feb 12, 2004 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package org.openedit.repository; import com.openedit.OpenEditException; /** * @author avery * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class RepositoryException extends OpenEditException { /** * Comment for <code>serialVersionUID</code> */ private static final long serialVersionUID = -4616794535797112530L; /** * */ public RepositoryException() { super(); // TODO Auto-generated constructor stub } /** * @param message */ public RepositoryException(String message) { super(message); // TODO Auto-generated constructor stub } /** * @param cause */ public RepositoryException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } /** * @param message * @param cause */ public RepositoryException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }