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.craftercms.commons.i10n.AbstractI10nRuntimeException.java

/**
 * Root runtime exception for any {@link Exception} that wants to be localized.
 *
 * @author avasquez
 */
public abstract class AbstractI10nRuntimeException extends RuntimeException {

From source file com.basho.riak.client.response.RiakResponseRuntimeException.java

 * Thrown when the Riak server returns a malformed response. The HTTP response
 * is returned in the exception.
 */
public class RiakResponseRuntimeException extends RuntimeException implements HttpResponse {

    private static final long serialVersionUID = 2853253336513247178L;

From source file ch.wisv.areafiftylan.exception.PaymentException.java

/**
 * Created by sille on 26-12-15.
 */
@ResponseStatus(HttpStatus.BAD_REQUEST)
public class PaymentException extends RuntimeException {

From source file org.apache.axis.InternalException.java

/**
 * Encapsulates exceptions for "should never occur" situations.  Extends
 * RuntimeException so it need not explicitly be caught.  Logs the exception
 * as a fatal error, and if debug is enabled, includes the full stack trace.
 *
 * @author Sam Ruby (rubys@us.ibm.com)

From source file ru.codemine.ccms.exceptions.ResourceNotFoundException.java

/**
 *
 * @author Alexander Savelev
 */

@ResponseStatus(value = HttpStatus.NOT_FOUND)

From source file com.github.jknack.amd4j.AmdException.java

/**
 * Amd exceptions.
 *
 * @author edgar.espina
 * @since 0.1.0
 */

From source file org.trustedanalytics.uploader.rest.UploadException.java

public class UploadException extends RuntimeException {
    private final List<Transfer> files;

    public UploadException(Collection<Transfer> files, Throwable cause) {
        super(Objects.requireNonNull(cause, "cause"));

From source file com.github.bpark.ResourceNotFoundException.java

/**
 * 404 Expetion.
 * <p/>
 * <h3>Extra-Info</h3>
 * Created: 19:29 05.06.12
 *

From source file ru.codemine.ccms.exceptions.InvalidParametersException.java

/**
 *
 * @author Alexander Savelev
 */
@ResponseStatus(value = HttpStatus.UNPROCESSABLE_ENTITY)
public class InvalidParametersException extends RuntimeException {

From source file org.openehealth.ipf.commons.ihe.xds.core.XdsRuntimeException.java

/**
 * @author Dmytro Rud
 */
public class XdsRuntimeException extends RuntimeException {
    private final ErrorCode errorCode;
    private final String codeContext;