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.tcl.lzhang1.mymusic.AppException.java

/**
 * @author leizhang
 */
public class AppException extends Exception implements UncaughtExceptionHandler {

    /** The Constant TAG. */

From source file es.emergya.comunications.exceptions.MessageProcessingException.java

/**
 * Exception related with the message processing
 * 
 * @author aromero
 * 
 */

From source file ch.cyberduck.core.threading.BackgroundException.java

/**
 * @version $Id: BackgroundException.java 10935 2013-04-24 15:57:35Z dkocher $
 */
public class BackgroundException extends Exception {
    private static Logger log = Logger.getLogger(BackgroundException.class);

From source file org.esigate.HttpErrorPage.java

/**
 * Exception thrown when an error occurred retrieving a resource.
 * <p>
 * This exception can include a HTTP response (with error page body) or a String body.
 * 
 * @author Francois-Xavier Bonnet

From source file com.couchbase.cbadmin.client.RestApiException.java

/**
 * An exception thrown by the REST API
 * @author mnunberg
 */
public class RestApiException extends Exception {
    private final StatusLine status;

From source file com.xpn.xwiki.XWikiException.java

public class XWikiException extends Exception {
    private static final Logger LOGGER = LoggerFactory.getLogger(XWikiException.class);

    private int module;

    private int code;

From source file org.apache.lens.server.api.error.LensException.java

/**
 * The Class LensException.
 */
@SuppressWarnings("serial")
public class LensException extends Exception implements Comparable<LensException> {

From source file com.microsoft.windowsazure.exception.ServiceException.java

/**
 * The Service Exception indicates an error while executing a service operation.
 */
public class ServiceException extends Exception {

    private static final long serialVersionUID = -4942076377009150131L;

From source file hudson.plugins.chainreactorclient.ChainReactorInvalidServerException.java

class ChainReactorInvalidServerException extends Exception {
    ChainReactorInvalidServerException(String message) {
        super(message);
    }
}

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

/**
 * invalid authentication request (invalid keyspace, user does not exist, or credentials invalid)
 */
public class AuthenticationException extends Exception
        implements org.apache.thrift.TBase<AuthenticationException, AuthenticationException._Fields>,
        java.io.Serializable, Cloneable {