You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by vd...@apache.org on 2003/11/20 09:41:36 UTC

cvs commit: xml-security/src/org/apache/xml/security/keys/keyresolver InvalidKeyResolverException.java KeyResolverException.java

vdkoogh     2003/11/20 00:41:36

  Modified:    src/org/apache/xml/security/keys/keyresolver
                        InvalidKeyResolverException.java
                        KeyResolverException.java
  Log:
  msgID and originalException were hiding the members in the superclass.
  
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.2       +14 -14    xml-security/src/org/apache/xml/security/keys/keyresolver/InvalidKeyResolverException.java
  
  Index: InvalidKeyResolverException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/keys/keyresolver/InvalidKeyResolverException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- InvalidKeyResolverException.java	1 Oct 2001 08:36:10 -0000	1.1
  +++ InvalidKeyResolverException.java	20 Nov 2003 08:41:36 -0000	1.2
  @@ -82,42 +82,42 @@
      /**
       * Constructor InvalidKeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       */
  -   public InvalidKeyResolverException(String msgID) {
  -      super(msgID);
  +   public InvalidKeyResolverException(String _msgID) {
  +      super(_msgID);
      }
   
      /**
       * Constructor InvalidKeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       */
  -   public InvalidKeyResolverException(String msgID, Object exArgs[]) {
  -      super(msgID, exArgs);
  +   public InvalidKeyResolverException(String _msgID, Object exArgs[]) {
  +      super(_msgID, exArgs);
      }
   
      /**
       * Constructor InvalidKeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param originalException
       */
  -   public InvalidKeyResolverException(String msgID,
  -                                      Exception originalException) {
  -      super(msgID, originalException);
  +   public InvalidKeyResolverException(String _msgID,
  +                                      Exception _originalException) {
  +      super(_msgID, _originalException);
      }
   
      /**
       * Constructor InvalidKeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       * @param originalException
       */
  -   public InvalidKeyResolverException(String msgID, Object exArgs[],
  -                                      Exception originalException) {
  -      super(msgID, exArgs, originalException);
  +   public InvalidKeyResolverException(String _msgID, Object exArgs[],
  +                                      Exception _originalException) {
  +      super(_msgID, exArgs, _originalException);
      }
   }
  
  
  
  1.2       +13 -13    xml-security/src/org/apache/xml/security/keys/keyresolver/KeyResolverException.java
  
  Index: KeyResolverException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/keys/keyresolver/KeyResolverException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- KeyResolverException.java	1 Oct 2001 08:36:10 -0000	1.1
  +++ KeyResolverException.java	20 Nov 2003 08:41:36 -0000	1.2
  @@ -85,41 +85,41 @@
      /**
       * Constructor KeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       */
  -   public KeyResolverException(String msgID) {
  -      super(msgID);
  +   public KeyResolverException(String _msgID) {
  +      super(_msgID);
      }
   
      /**
       * Constructor KeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       */
  -   public KeyResolverException(String msgID, Object exArgs[]) {
  -      super(msgID, exArgs);
  +   public KeyResolverException(String _msgID, Object exArgs[]) {
  +      super(_msgID, exArgs);
      }
   
      /**
       * Constructor KeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param originalException
       */
  -   public KeyResolverException(String msgID, Exception originalException) {
  -      super(msgID, originalException);
  +   public KeyResolverException(String _msgID, Exception _originalException) {
  +      super(_msgID, _originalException);
      }
   
      /**
       * Constructor KeyResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       * @param originalException
       */
  -   public KeyResolverException(String msgID, Object exArgs[],
  -                               Exception originalException) {
  -      super(msgID, exArgs, originalException);
  +   public KeyResolverException(String _msgID, Object exArgs[],
  +                               Exception _originalException) {
  +      super(_msgID, exArgs, _originalException);
      }
   }