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.chenchengzhi.windtalkers.core.Issue.java

/**
 * Created by jinchengchen on 10/29/14.
 */
public class Issue extends RuntimeException implements Understandable {

    private StatusCode statusCode;

From source file org.cloudfoundry.identity.uaa.scim.ScimException.java

/**
 * @author Luke Taylor
 * @author Dave Syer
 */
public class ScimException extends RuntimeException {

From source file com.hybris.integration.exception.TmallAppException.java

public class TmallAppException extends RuntimeException {

    private static final long serialVersionUID = -5325392504946334907L;

    protected static TmallAppResponse tmallAppResponse;

From source file org.cloudfoundry.identity.uaa.scim.exception.ScimException.java

/**
 * @author Luke Taylor
 * @author Dave Syer
 */
public class ScimException extends RuntimeException {

From source file school.controller.exception.NotFoundException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
public class NotFoundException extends RuntimeException {
    public NotFoundException() {
        super("The resource you requested does not exist");
    }
}

From source file edu.stanford.slac.archiverappliance.PB.data.PBParseException.java

/**
 * We convert PB exceptions into a runtime exception to minimize the number of IOExceptions in the method declarations.
 * We do want to avoid unmarshalling on construction; however, this forces us to unmarshal ( if needed )  on the gets.
 * @author mshankar
 *
 */

From source file org.eclipse.emf.teneo.TeneoException.java

/**
 * Is used to throw runtime store exceptions. This class offers automatic logging to commons
 * logging. Note that this class extends RuntimeException, so no forced throws and catch statements.
 * Although there are very differing views on this topic but it is our experience that to many
 * checked exceptions only distract the programmer and have no added value.
 * 

From source file org.dawnsci.marketplace.NotFoundException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
public class NotFoundException extends RuntimeException {
    private static final long serialVersionUID = -7005148122558206912L;
}

From source file org.dawnsci.marketplace.ForbiddenException.java

@ResponseStatus(HttpStatus.FORBIDDEN)
public class ForbiddenException extends RuntimeException {
    private static final long serialVersionUID = -1795037231590352304L;

}

From source file com.openshift.restclient.OpenShiftException.java

/**
 * @author Andre Dietisheim
 */
public class OpenShiftException extends RuntimeException {

    private static final long serialVersionUID = -7076942050102006278L;