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.orange.labs.sdk.exception.OrangeAPIException.java

public class OrangeAPIException extends Exception {

    public int statusCode;

    public String code;

From source file org.safecreative.api.ApiException.java

/**
 * Api's main exception class
 *
 * @author mpolo@safecreative.org
 * @author jguillo@safecreative.org
 */

From source file com.siblinks.ws.common.BaseException.java

/**
 * @author vbongoni
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */

From source file org.orekit.errors.OrekitException.java

/** This class is the base class for all specific exceptions thrown by
 * the orekit classes.
    
 * <p>When the orekit classes throw exceptions that are specific to
 * the package, these exceptions are always subclasses of
 * OrekitException. When exceptions that are already covered by the

From source file example.DecrypterException.java

/**
 * An Exception thrown by Decrypter if the ciphertext cannot successfully be
 * decrypted.
 */
class DecrypterException extends Exception {

From source file com.manning.androidhacks.hack023.exception.AndroidHacksException.java

public class AndroidHacksException extends Exception {

    private static final long serialVersionUID = 1L;

    public AndroidHacksException(String msg) {
        super(msg);

From source file geva.Exceptions.BadParameterException.java

/**
 * Thrown when the input parameters are exceptional
 * @author EHemberg
 */
public class BadParameterException extends Exception {
    private Log logger = LogFactory.getLog(BadParameterException.class);

From source file geva.Exceptions.MalformedGrammarException.java

/**
 * Thrown if the Grammar file fails to parse.
 * @author EHemberg
 */
public class MalformedGrammarException extends Exception {
    private Log logger = LogFactory.getLog(MalformedGrammarException.class);

From source file geva.Exceptions.InitializationException.java

/**
 * Thrown when the initialization of an Individual is exceptional
 * @author EHemberg
 */
public class InitializationException extends Exception {
    private Log logger = LogFactory.getLog(InitializationException.class);

From source file mixi4j.MixiException.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
 */