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

AlgorithmAlreadyRegisteredException

public class AlgorithmAlreadyRegisteredException extends XMLSecurityException
author
Christian Geuer-Pollmann

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


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

param
_msgID

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

param
_msgID
param
exArgs

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

param
_msgID
param
_originalException

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

param
_msgID
param
exArgs
param
_originalException

      super(_msgID, exArgs, _originalException);
   
Methods Summary