Example usage for org.apache.commons.lang.exception NestableException subclass-usage

List of usage examples for org.apache.commons.lang.exception NestableException subclass-usage

Introduction

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

Usage

From source file org.openamf.filter.FilterException.java

/**
 * @author Jason Calabrese <jasonc@missionvi.com>
 * @version $Revision: 1.5 $, $Date: 2003/08/09 16:59:23 $
 */
public class FilterException extends NestableException {

From source file org.openamf.invoker.AccessDeniedException.java

/**
  * Exception class for indicationg that a service may not be accessed.
  * @author Richard Kunze
  * @version $Revision: 1.4 $, $Date: 2003/08/09 16:59:22 $
  */

From source file org.realtors.rets.common.metadata.MetadataException.java

public class MetadataException extends NestableException {
    public MetadataException() {
        super();
    }

    public MetadataException(String msg) {

From source file org.openamf.invoker.ServiceInvocationException.java

/**
 * @author Jason Calabrese <jasonc@missionvi.com>
 * @author Sylwester Lachiewicz <matrix@users.sourceforge.net>
 * @version $Revision: 1.21 $, $Date: 2004/08/04 05:15:44 $
 */
public class ServiceInvocationException extends NestableException {

From source file com.marc.lastweek.commons.exceptions.OperationException.java

public class OperationException extends NestableException {

    private static final long serialVersionUID = 6241933231672390425L;

    public OperationException() {
        super();

From source file info.magnolia.cms.module.RegisterException.java

/**
 * If the ModuleFactory can't register a module
 * @author philipp
 * @version $Revision: 2277 $ ($Author: philipp $)
 */
public class RegisterException extends NestableException {

From source file com.liferay.util.mail.MailServerException.java

/**
 * @author Alexander Chow
 */
public class MailServerException extends NestableException {

    public MailServerException() {

From source file org.n0pe.asadmin.AsAdminException.java

public class AsAdminException extends NestableException {

    private static final long serialVersionUID = 1L;

    public AsAdminException() {
    }

From source file com.liferay.samplestruts.SampleException.java

/**
 * @author Brian Wing Shun Chan
 */
public class SampleException extends NestableException {

    public SampleException() {

From source file MainClass.java

class ApplicationException extends NestableException {
    public ApplicationException(String msg, Throwable cause) {
        super(msg, cause);
    }
}