Example usage for java.lang Exception subclass-usage

List of usage examples for java.lang Exception subclass-usage

Introduction

In this page you can find the example usage for java.lang Exception subclass-usage.

Usage

From source file com.almende.eve.rpc.jsonrpc.JSONRPCException.java

/**
 * The Class JSONRPCException.
 */
public class JSONRPCException extends Exception {
    private static final long serialVersionUID = -4258336566828038603L;
    private static final Logger LOG = Logger.getLogger(JSONRPCException.class.getCanonicalName());

From source file com.sixt.service.framework.rpc.RpcCallException.java

/**
 * Any error state triggered by interaction with a remote service will result
 * in an instance of this class being thrown.
 */
public class RpcCallException extends Exception {

From source file egovframework.rte.fdl.cmmn.exception.BaseException.java

/**
 * BaseException ? EgovBizException? ???.  * 
 * 
 * <p><b>NOTE:</b> Exception Handling ?? BaseException ? 
 * EgovBizException, RuntimeException, FdlException? 
 *  Exception ? ?  BaseException ? ?? ? .</b>

From source file org.accada.reader.hal.HardwareException.java

/**
 * Signals that a command failed on the hardware abstraction layer. This
 * exception is thrown by objects within the hardware abstraction layer if the
 * attempt to execute a command failed. The idea is to propagate just a single
 * kind of error to the layers above. This simplifies the error handling for
 * other layers. <n> The error itself can be specified in more detail by using

From source file rapture.dsl.iqry.InvalidQueryException.java

/**
 * @author bardhi
 * @since 4/28/15.
 */
public class InvalidQueryException extends Exception {

From source file opendbcopy.plugin.model.exception.MissingAttributeException.java

/**
 * class description
 *
 * @author Anthony Smith
 * @version $Revision$
 */

From source file opendbcopy.plugin.model.exception.UnsuppertedElementException.java

/**
 * class description
 *
 * @author Anthony Smith
 * @version $Revision$
 */

From source file opendbcopy.plugin.model.exception.UnsupportedAttributeValueException.java

/**
 * class description
 *
 * @author Anthony Smith
 * @version $Revision$
 */

From source file com.surevine.alfresco.webscript.gsa.exception.GSAInvalidParameterException.java

public class GSAInvalidParameterException extends Exception {

    private static final Log _logger = LogFactory.getLog(GSAInvalidParameterException.class);

    public GSAInvalidParameterException(String message, Throwable cause, int code) {
        super(code + "|" + message + "|" + new Date().getTime() % 10000, cause);

From source file com.kdab.daytona.InvalidRuleSyntaxException.java

class InvalidRuleSyntaxException extends Exception {
    private static final long serialVersionUID = 1L;

    public InvalidRuleSyntaxException(String msg) {
        super(msg);
    }