FileDocCategorySizeDatePackage
AnnotatedException.javaAPI DocAndroid 1.5 API558Wed May 06 22:41:06 BST 2009org.bouncycastle.jce.provider

AnnotatedException

public class AnnotatedException extends Exception

Fields Summary
private Exception
_underlyingException
Constructors Summary
AnnotatedException(String string, Exception e)

        super(string);
        
        _underlyingException = e;
    
AnnotatedException(String string)

        this(string, null);
    
Methods Summary
public java.lang.ThrowablegetCause()

        return _underlyingException;
    
java.lang.ExceptiongetUnderlyingException()

        return _underlyingException;