List of usage examples for java.lang Exception subclass-usage
From source file org.usapi.common.USAPIException.java
public class USAPIException extends Exception { private WebDriver webDriver = null; private Log log = LogFactory.getLog(this.getClass()); public USAPIException(String msg, WebDriver webDriver) { super(msg);
From source file opendbcopy.plugin.model.exception.MissingElementException.java
/**
* class description
*
* @author Anthony Smith
* @version $Revision$
*/
From source file org.apache.accumulo.core.client.AccumuloSecurityException.java
/** * An Accumulo Exception for security violations, authentication failures, authorization failures, etc. * */ public class AccumuloSecurityException extends Exception { private static final long serialVersionUID = 1L;
From source file org.wso2.carbon.identity.base.IdentityException.java
/** * Used for creating checked exceptions that can be handled. */ public class IdentityException extends Exception { private static final long serialVersionUID = 725992116511551241L;
From source file cn.com.sinosoft.util.exception.NestableException.java
/**
* The base class of all exceptions which can contain other exceptions.
*
* It is intended to ease the debugging by carrying on the information
* about the exception which was caught and provoked throwing the
* current exception. Catching and rethrowing may occur multiple
From source file com.javaeeeee.exception.BookmarkNotFoundException.java
/** * The exception thrown when a bookmark is not found. * * @author Dmitry Noranovich <javaeeeee at gmail dot com> */ @ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "No such bookmark.")
From source file com.javaeeeee.exception.UserNotFoundException.java
/** * The exception thrown when user is not found. * * @author Dmitry Noranovich <javaeeeee at gmail dot com> */ @ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "No such user.")
From source file com.rdm.common.util.exception.ContextedException.java
/**
* <p>
* An exception that provides an easy and safe way to add contextual information.
* </p><p>
* An exception trace itself is often insufficient to provide rapid diagnosis of the issue.
* Frequently what is needed is a select few pieces of local contextual data.
From source file cz.hobrasoft.pdfmu.operation.OperationException.java
/**
* This exception is thrown by {@link Operation#execute(Namespace)} to notify
* {@link cz.hobrasoft.pdfmu.Main#main(String[])} that the operation has
* encountered a condition it cannot recover from.
*
* @author <a href="mailto:filip.bartek@hobrasoft.cz">Filip Bartek</a>
From source file ORG.oclc.os.SRW.SRWDiagnostic.java
/** * * @author levan */ public class SRWDiagnostic extends Exception { static final Log log = LogFactory.getLog(SRWDiagnostic.class);