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 com.torchmind.stockpile.server.error.ServiceException.java

/**
 * <strong>Service Exception</strong>
 *
 * Represents errors on Mojang's side within the application.
 *
 * @author <a href="mailto:johannesd@torchmind.com">Johannes Donath</a>

From source file com.janrain.servlet.InvalidRequestException.java

@ResponseStatus(value = HttpStatus.BAD_REQUEST)
public class InvalidRequestException extends RuntimeException {

    public InvalidRequestException(String message) {
        this(message, HttpServletResponse.SC_BAD_REQUEST, null);
    }

From source file org.cloudifysource.rest.util.HttpException.java

public abstract class HttpException extends RuntimeException {

    private static final long serialVersionUID = 1L;
    final HttpStatus status;

    public HttpException(HttpStatus status) {

From source file com.kazuki43zoo.jpetstore.component.exception.ResourceNotFoundException.java

/**
 * @author Kazuki Shimizu
 */
@Getter
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {

From source file ubic.gemma.genome.taxon.service.TaxonServiceException.java

/**
 * The default exception thrown for unexpected errors occurring within {@link ubic.gemma.genome.taxon.service.TaxonService}.
 */
public class TaxonServiceException extends java.lang.RuntimeException {
    /**
     * The serial version UID of this class. Needed for serialization.

From source file biz.c24.io.spring.integration.validation.C24AggregatedMessageValidationException.java

/**
 * @author Adam Skogman
 */
@SuppressWarnings("serial")
public class C24AggregatedMessageValidationException extends RuntimeException {

From source file com.janrain.backplane2.server.InvalidRequestException.java

@ResponseStatus(value = HttpStatus.BAD_REQUEST)
public class InvalidRequestException extends RuntimeException {

    public InvalidRequestException(String message) {
        this(message, HttpServletResponse.SC_BAD_REQUEST, null);
    }

From source file ubic.gemma.annotation.reference.BibliographicReferenceServiceException.java

/**
 * The default exception thrown for unexpected errors occurring within
 * {@link ubic.gemma.annotation.reference.BibliographicReferenceService}.
 */
public class BibliographicReferenceServiceException extends java.lang.RuntimeException {
    /**

From source file ubic.gemma.security.authentication.UserServiceException.java

/**
 * The default exception thrown for unexpected errors occurring within
 * {@link ubic.gemma.security.authentication.UserService}.
 */
public class UserServiceException extends java.lang.RuntimeException {
    /**

From source file org.apache.hadoop.gateway.shell.ErrorResponse.java

class ErrorResponse extends RuntimeException {

    HttpResponse response;

    ErrorResponse(HttpResponse response) {
        super("" + response.getStatusLine());