FileDocCategorySizeDatePackage
Base64DecodingException.javaAPI DocJava SE 6 API2051Tue Jun 10 00:23:02 BST 2008com.sun.org.apache.xml.internal.security.exceptions

Base64DecodingException

public class Base64DecodingException extends XMLSecurityException
This Exception is thrown if decoding of Base64 data fails.
author
Christian Geuer-Pollmann

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public Base64DecodingException()
Constructor Base64DecodingException


         
     
      super();
   
public Base64DecodingException(String _msgID)
Constructor Base64DecodingException

param
_msgID

      super(_msgID);
   
public Base64DecodingException(String _msgID, Object[] exArgs)
Constructor Base64DecodingException

param
_msgID
param
exArgs

      super(_msgID, exArgs);
   
public Base64DecodingException(String _msgID, Exception _originalException)
Constructor Base64DecodingException

param
_msgID
param
_originalException

      super(_msgID, _originalException);
   
public Base64DecodingException(String _msgID, Object[] exArgs, Exception _originalException)
Constructor Base64DecodingException

param
_msgID
param
exArgs
param
_originalException

      super(_msgID, exArgs, _originalException);
   
Methods Summary