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.flipkart.foxtrot.core.datastore.DataStoreException.java

/**
 * User: Santanu Sinha (santanu.sinha@flipkart.com)
 * Date: 12/03/14
 * Time: 9:18 PM
 */
public class DataStoreException extends Exception {

From source file com.dickthedeployer.dick.web.exception.ProjectAlredyExistsException.java

/**
 *
 * @author mariusz
 */
@ResponseStatus(HttpStatus.PRECONDITION_FAILED)
public class ProjectAlredyExistsException extends Exception {

From source file com.bennavetta.appsite.webapi.ResourceNotFoundException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
@SuppressWarnings("serial")
public class ResourceNotFoundException extends Exception {
    public ResourceNotFoundException(String resource) {
        super("Resource not found: " + resource);
    }

From source file Queue.java

class QueueEmptyException extends Exception {
}

class QueueFullException extends Exception {
}

From source file org.talend.components.marketo.runtime.client.type.MarketoException.java

public class MarketoException extends Exception {

    private String apiMode = "";

    private String code = "";

From source file net.gbmb.collector.CollectionStateException.java

@ResponseStatus(value = HttpStatus.CONFLICT, reason = "Already existing")
public class CollectionStateException extends Exception {

    private final CollectionState currentState;

    public CollectionStateException(CollectionState state, String message) {

From source file com.nebhale.springone2014.model.DoorDoesNotExistException.java

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

    DoorDoesNotExistException(Long gameId, Long doorId) {
        super(String.format("Door '%d' in game '%d' does not exist", doorId, gameId));
    }

From source file org.eclipse.mylyn.github.internal.GitHubServiceException.java

/**
 * Exception generated by the GitHubService
 */
public class GitHubServiceException extends Exception {

    /**

From source file org.jiemamy.utils.ResourceNotFoundException.java

/**
 * ????????????
 * 
 * @version $Id$
 * @author j5ik2o
 */

From source file org.docx4j.services.client.ConversionException.java

/**
 * @author jharrop
 * @since 3.3.0
 */
@SuppressWarnings("serial")
public class ConversionException extends Exception {