Example usage for org.apache.commons.lang3.exception ContextedRuntimeException subclass-usage

List of usage examples for org.apache.commons.lang3.exception ContextedRuntimeException subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.lang3.exception ContextedRuntimeException subclass-usage.

Usage

From source file com.joyent.manta.exception.MantaException.java

/**
 * The base MantaException class.
 * @author Yunong Xiao
 */
public class MantaException extends ContextedRuntimeException {

From source file com.joyent.manta.exception.ConfigurationException.java

/**
 * Exception thrown when configuration contains invalid values.
 *
 * @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
 * @since 3.0.0
 */

From source file org.force66.vobase.ValueObjectException.java

public class ValueObjectException extends ContextedRuntimeException {

    private static final long serialVersionUID = -4223125798670228846L;

    public ValueObjectException(String message, Throwable cause) {
        super(message, cause);

From source file org.force66.circuit.CircuitException.java

public class CircuitException extends ContextedRuntimeException {

    private static final long serialVersionUID = 257351987428454396L;

    public CircuitException(String message) {
        super(message);

From source file org.force66.insanity.RetryException.java

public class RetryException extends ContextedRuntimeException {

    private static final long serialVersionUID = 257351987428454396L;

    public RetryException(String message) {
        super(message);

From source file org.moneta.error.MonetaException.java

/**
 * Application exception class for Moneta
 * @author D. Ashmore
 *
 */
public class MonetaException extends ContextedRuntimeException {

From source file org.force66.beantester.utils.BeanTesterException.java

/**
 * Basic runtime exception for the BeanTester product.
 * @author D. Ashmore
 *
 */
public class BeanTesterException extends ContextedRuntimeException {

From source file com.joyent.manta.exception.OnCloseAggregateException.java

/**
 * Exception class that provides an aggregated view of all the exceptions
 * that happened during a close() operation.
 *
 * @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
 * @since 2.4.0

From source file org.force66.cxfutils.CxfSoapFaultRuntimeException.java

/**
 * Exception meant to be extended by Apache CXF when generating exceptions for
 * SOAP Faults. This exception will insure that embedded information CSF places
 * for exceptions will be logged.
 *
 * @author D. Ashmore

From source file com.anrisoftware.simplerest.oanda.core.BuildAccountURIException.java

@SuppressWarnings("serial")
public class BuildAccountURIException extends ContextedRuntimeException {

    public BuildAccountURIException(URISyntaxException e, String string) {
        super("Invalid account URI", e);
        addContextValue("uri", string);