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.siemens.scr.avt.ad.api.PersistentObjectNotFoundException.java

public class PersistentObjectNotFoundException extends Exception {
    public static final String LIST_DELIMITER = ",";

    public PersistentObjectNotFoundException(Class<?> objType, String[] paramTypes, Object[] params) {
        this(objType + " with parameters <" + StringUtils.join(paramTypes, LIST_DELIMITER) + ">=("
                + StringUtils.join(params, LIST_DELIMITER) + ") is not found!");

From source file com.baasbox.service.sociallogin.BaasBoxSocialException.java

public abstract class BaasBoxSocialException extends Exception {

    protected JsonNode error;

    public BaasBoxSocialException() {
        super();

From source file org.moxie.proxy.connection.DownloadFailed.java

/**
 * This exception extracts information from a failed GET request and presents it
 * in a user-friendly way.
 * 
 * @author digulla
 * 

From source file com.linkedin.platform.errors.LIApiError.java

public class LIApiError extends Exception {

    public static enum ErrorType {
        accessTokenIsNotSet, apiErrorResponse, other;
    }

From source file cn.hi321.browser.weave.client.WeaveException.java

/**
 * @author Patrick Woodworth
 */
@SuppressWarnings("serial")
public class WeaveException extends Exception {

From source file org.trustedanalytics.h2oscoringengine.h2omodel.ModelNotFoundException.java

@ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "Model not found")
public class ModelNotFoundException extends Exception {

    private static final long serialVersionUID = -3662251704289976456L;

    public ModelNotFoundException() {

From source file com.emergent.android.weave.client.WeaveException.java

/**
 * @author Patrick Woodworth
 */
@SuppressWarnings("serial")
public class WeaveException extends Exception {

From source file pt.webdetails.cdf.dd.model.core.UnsupportedThingException.java

public final class UnsupportedThingException extends Exception {

    private static final long serialVersionUID = 879684902399171869L;

    private final String _thingKind;
    private final String _thingId;

From source file com.nebhale.springone2014.repository.GameDoesNotExistException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
public final class GameDoesNotExistException extends Exception {

    public GameDoesNotExistException(Long id) {
        super(String.format("Game '%d' does not exist", id));
    }

From source file io.kahu.hawaii.util.exception.HawaiiException.java

public abstract class HawaiiException extends Exception {

    private static final long serialVersionUID = 6130927161530126904L;

    public HawaiiException(String message, Throwable throwable) {
        super(message, throwable);