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.d2lvalence.idkeyauth.codec.binary.DecoderException.java

/**
 * Thrown when there is a failure condition during the decoding process. This exception is thrown when a {@link Decoder}
 * encounters a decoding specific exception such as invalid data, or characters outside of the expected range.
 *
 * @version $Id: DecoderException.java 1429868 2013-01-07 16:08:05Z ggregory $
 */

From source file org.accada.hal.HardwareAbstractionException.java

/**
 * This exception is the root exception for all exeption that
 * are thrown in the hardware abstraction layer.
 * 
 * This exception is thrown by HAL controller methods of a objects within the hardware abstraction layer if the
 * attempt to execute a command failed. The idea is to propagate just a single

From source file edu.mit.mobile.android.locast.net.NetworkProtocolException.java

public class NetworkProtocolException extends Exception {
    private int httpResponseCode;
    private String httpResponseMessage;
    private Exception origException;
    private boolean isGeneric = true;
    /**

From source file org.wso2.carbon.rssmanager.data.mgt.publisher.exception.RSSDataMgtException.java

/**
 * Acts as a decorator and do log in addition to the existing behaviour of the exception
 * This exception is to be thrown for errors in Cassandra Server Management
 */
/*
 *  Licensed to the Apache Software Foundation (ASF) under one

From source file com.d2lvalence.idkeyauth.codec.binary.EncoderException.java

/**
 * Thrown when there is a failure condition during the encoding process. This exception is thrown when an
 * {@link Encoder} encounters a encoding specific exception such as invalid data, inability to calculate a checksum,
 * characters outside of the expected range.
 *
 * @version $Id: EncoderException.java 1429871 2013-01-07 16:12:16Z ggregory $

From source file org.jasig.cas.authentication.RootCasException.java

/**
 * Generic CAS exception that sits at the top of the exception hierarchy. Provides
 * unified logic around retrieval and configuration of exception codes that may be
 * mapped inside an external resource bundle for internationalization of error messages.
 *
 * @author Misagh Moayyed

From source file org.ovirt.engine.ui.uicompat.external.DecoderException.java

/**
 * Thrown when a Decoder has encountered a failure condition during a decode.
 * 
 * @author Apache Software Foundation
 * @version $Id: DecoderException.java 797804 2009-07-25 17:27:04Z ggregory $
 */

From source file org.wso2.carbon.rssmanager.data.mgt.publisher.exception.ClusterDataAdminException.java

/**
 * Acts as a decorator and do log in addition to the existing behaviour of the exception
 * This exception is to be thrown for errors in Cassandra Server Management
 */
/*
 *  Licensed to the Apache Software Foundation (ASF) under one

From source file com.smartling.api.sdk.exceptions.SmartlingApiException.java

public class SmartlingApiException extends Exception {
    private static final long serialVersionUID = -397098626101615761L;

    private final List<Error> originalErrors;

    private final String requestId;

From source file org.ovirt.engine.ui.uicompat.external.EncoderException.java

/**
 * Thrown when there is a failure condition during the encoding process. This exception is thrown when an Encoder
 * encounters a encoding specific exception such as invalid data, inability to calculate a checksum, characters outside
 * of the expected range.
 * 
 * @author Apache Software Foundation