List of usage examples for java.lang Exception subclass-usage
From source file Array.java
class NoSuchObjectException extends Exception { public NoSuchObjectException() { super("No such object found."); } }
From source file org.apache.openejb.server.Main.java
class DontStartServerException extends Exception { private static final long serialVersionUID = 1L; }
From source file Hash.java
class NoSuchObjectException extends Exception { public NoSuchObjectException() { super("No such object found."); } }
From source file com.zimbra.cs.util.ProxyConfOverride.java
@SuppressWarnings("serial") class ProxyConfException extends Exception { public ProxyConfException(String msg) { super(msg); }
From source file com.xpn.xwiki.stats.impl.xwiki.XWikiStatsStoreService.java
/** * Used to order stopping storing thread. * * @version $Id$ */ class StopStatsStoreException extends Exception {
From source file com.liusoft.dlog4j.action.ActionExtend.java
/** * ?? * @author liudong */ class UnsupportedReturnTypeException extends Exception {
From source file org.tolven.tools.TolvenInstaller.java
class AbandonInstallationException extends Exception { private static final long serialVersionUID = 1L; AbandonInstallationException(Exception ex) { super(ex);
From source file StateMachine.java
/**
* An exception thrown when an invalid transition is attempted from a state.
*
* @author Scott.Stark@jboss.org
* @version $Revision: 2800 $
*/
From source file DateParser.java
class InvalidDateException extends Exception { /** * Creates an exception to signal an invalid date. * @param message */ public InvalidDateException(String message) {
From source file de.upb.wdqa.wdvd.processors.decorators.JsonProcessor.java
class JSONException extends Exception { private static final long serialVersionUID = 1L; JSONException(String str) { super(str); }