FileDocCategorySizeDatePackage
TransformationException.javaAPI DocJava SE 6 API2015Tue Jun 10 00:23:04 BST 2008com.sun.org.apache.xml.internal.security.transforms

TransformationException

public class TransformationException extends XMLSecurityException
author
Christian Geuer-Pollmann

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


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

param
_msgID

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

param
_msgID
param
exArgs

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

param
_msgID
param
_originalException

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

param
_msgID
param
exArgs
param
_originalException

      super(_msgID, exArgs, _originalException);
   
Methods Summary