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.ihelpoo.app.AppException.java

/**
 * ?????
 * @version 1.0
 * @created 2012-3-21
 */
public class AppException extends Exception implements UncaughtExceptionHandler {

From source file twitter4j.TwitterException.java

/**
 * An exception class that will be thrown when TwitterAPI calls are failed.<br>
 * In case the Twitter server returned HTTP error code, you can get the HTTP status code using getStatusCode() method.
 *
 * @author Yusuke Yamamoto - yusuke at mac.com
 */

From source file net.yama.android.managers.connection.ApplicationException.java

/**
 * Generic exception
 * @author Rohit Kumbhar
 */
public class ApplicationException extends Exception {

From source file com.android.fastlibrary.AppException.java

/**
 * Do one thing at a time, and do well!
 *
 * @Prject: FugaoApps
 * @Location: com.android.fastlibrary.AppManager
 * @Description: ?????

From source file hudson.plugins.memegen.MemegeneratorResponseException.java

class MemegeneratorResponseException extends Exception {
    MemegeneratorResponseException(JSONObject obj) {
        super(obj.get("errorMessage") + ", full response: " + obj.toJSONString());
    }
}

From source file org.apache.cassandra.thrift.NotFoundException.java

/**
 * A specific column was requested that does not exist.
 */
public class NotFoundException extends Exception implements
        org.apache.thrift.TBase<NotFoundException, NotFoundException._Fields>, java.io.Serializable, Cloneable {
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct(

From source file org.apache.cassandra.thrift.TimedOutException.java

/**
 * RPC timeout was exceeded.  either a node failed mid-operation, or load was too high, or the requested op was too large.
 */
public class TimedOutException extends Exception implements
        org.apache.thrift.TBase<TimedOutException, TimedOutException._Fields>, java.io.Serializable, Cloneable {
    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct(

From source file org.apache.cassandra.thrift.UnavailableException.java

/**
 * Not all the replicas required could be created and/or read.
 */
public class UnavailableException extends Exception
        implements org.apache.thrift.TBase<UnavailableException, UnavailableException._Fields>,
        java.io.Serializable, Cloneable {

From source file org.apache.cassandra.thrift.SchemaDisagreementException.java

/**
 * schemas are not in agreement across all nodes
 */
public class SchemaDisagreementException extends Exception
        implements org.apache.thrift.TBase<SchemaDisagreementException, SchemaDisagreementException._Fields>,
        java.io.Serializable, Cloneable {

From source file twitter4j.internal.models4j.TwitterException.java

/**
 * An exception class that will be thrown when TwitterAPI calls are failed.<br>
 * In case the Twitter server returned HTTP error code, you can get the HTTP status code using getStatusCode() method.
 *
 * @author Yusuke Yamamoto - yusuke at mac.com
 */