FileDocCategorySizeDatePackage
ELException.javaAPI DocGlassfish v2 API3650Sat May 05 19:17:26 BST 2007org.apache.taglibs.standard.lang.jstl

ELException

public class ELException extends Exception
Represents any of the exception conditions that arise during the operation evaluation of the evaluator.
author
Nathan Abramson - Art Technology Group
version
$Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: tcfujii $

Fields Summary
Throwable
mRootCause
Constructors Summary
public ELException()
Constructor

    super ();
  
public ELException(String pMessage)
Constructor

    super (pMessage);
  
public ELException(Throwable pRootCause)
Constructor

    mRootCause = pRootCause;
  
public ELException(String pMessage, Throwable pRootCause)
Constructor

    super (pMessage);
    mRootCause = pRootCause;
  
Methods Summary
public java.lang.ThrowablegetRootCause()
Returns the root cause

    return mRootCause;
  
public java.lang.StringtoString()
String representation

    if (getMessage () == null) {
      return mRootCause.toString ();
    }
    else if (mRootCause == null) {
      return getMessage ();
    }
    else {
      return getMessage () + ": " + mRootCause;
    }