Example usage for org.springframework.core NestedCheckedException subclass-usage

List of usage examples for org.springframework.core NestedCheckedException subclass-usage

Introduction

In this page you can find the example usage for org.springframework.core NestedCheckedException subclass-usage.

Usage

From source file gov.nih.nci.cagrid.portal.portlet.workflow.WorkflowException.java

public class WorkflowException extends NestedCheckedException {
    private static final long serialVersionUID = 1L;

    public WorkflowException(String message, Throwable cause) {
        super(message, cause);
    }

From source file org.carewebframework.api.FrameworkCheckedException.java

/**
 * Superclass for all checked exceptions thrown in the framework
 * <p>
 * This class is <code>abstract</code> to force the programmer to extend the class.
 * <code>getMessage</code> will include nested exception information; <code>printStackTrace</code>
 * and other like methods will delegate to the wrapped exception, if any.