
org.jdesktop.el.ELException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swixml Show documentation
Show all versions of swixml Show documentation
GUI generating engine for Java applications
/*
* Copyright (C) 2007 Sun Microsystems, Inc. All rights reserved. Use is
* subject to license terms.
*/
package org.jdesktop.el;
/**
* Represents any of the exception conditions that can arise during
* expression evaluation.
*
* @since JSP 2.1
*/
public class ELException extends RuntimeException {
//-------------------------------------
/**
* Creates an ELException
with no detail message.
*/
public ELException () {
super ();
}
//-------------------------------------
/**
* Creates an ELException
with the provided detail message.
*
* @param pMessage the detail message
*/
public ELException (String pMessage) {
super (pMessage);
}
//-------------------------------------
/**
* Creates an ELException
with the given cause.
*
* @param pRootCause the originating cause of this exception
*/
public ELException (Throwable pRootCause) {
super( pRootCause );
}
//-------------------------------------
/**
* Creates an ELException with the given detail message and root cause.
*
* @param pMessage the detail message
* @param pRootCause the originating cause of this exception
*/
public ELException (String pMessage,
Throwable pRootCause) {
super (pMessage, pRootCause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy