Example usage for java.lang RuntimeException subclass-usage

List of usage examples for java.lang RuntimeException subclass-usage

Introduction

In this page you can find the example usage for java.lang RuntimeException subclass-usage.

Usage

From source file org.sakaiproject.contentreview.urkund.client.UrkundException.java

/**
 *
 * @author joer0037
 */
public class UrkundException extends RuntimeException {

From source file org.wso2.carbon.hdfs.dataaccess.DataAccessComponentException.java

/**
 * HDFS Cluter Access
 */
public class DataAccessComponentException extends RuntimeException {
    /**
    * Logs the given message and create a RuntimeException object

From source file org.robertburrelldonkin.template4couchdb.rest.HttpClientRestClientException.java

public class HttpClientRestClientException extends RuntimeException {

    private static final long serialVersionUID = -231843790463661128L;

    public HttpClientRestClientException(final ClientProtocolException e) {
        super(e);

From source file nu.yona.server.exceptions.ResourceBasedException.java

/**
 * This exception class is used as a base for all exceptions that use an error message which is defined in the message properties
 */
public abstract class ResourceBasedException extends RuntimeException {
    private static final long serialVersionUID = 8031973645020363969L;

From source file com.allanditzel.dashboard.exception.UnknownResourceException.java

/**
 * Application specific representation of a resource not being found within the system.
 *
 * @author Allan Ditzel
 * @since 1.0
 */

From source file fr.xebia.cocktail.ResourceNotFoundException.java

/**
 * 
 * @author <a href="mailto:cleclerc@xebia.fr">Cyrille Le Clerc</a>
 */
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {

From source file com.devnexus.ting.core.service.support.EventNotFoundException.java

/**
 *
 * @author Gunnar Hillert
 *
 */
@ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "No such Event")

From source file org.springsource.restbucks.payment.PaymentException.java

/**
 * @author Oliver Gierke
 */
@Getter
public class PaymentException extends RuntimeException {

From source file net.servicefixture.ServiceFixtureException.java

/**
 * The generic exception. Will be thrown if an exception is not
 * recoverable.
 * 
 * @author Chunyun Zhao
 * @since Dec 21, 2005

From source file com.jeanchampemont.notedown.web.utils.ResourceNotFoundException.java

@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {

}