FileDocCategorySizeDatePackage
UnresolvableException.javaAPI DocGlassfish v2 API2825Sat May 05 19:17:56 BST 2007org.apache.taglibs.standard.tag.common.xml

UnresolvableException

public class UnresolvableException extends XPathException
Derived from XPathException in order that XPath processor exceptions may be specifically caught.

Fields Summary
Constructors Summary
public UnresolvableException(String message)
Create an UnresolvableException object that holds an error message.

param
message The error message.

        super(message);
    
public UnresolvableException(Throwable cause)
Create an UnresolvableException object that holds an error message, and another exception that caused this exception.

param
cause The exception that caused this exception.

        super(cause);
    
Methods Summary