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:56:14 UTC

cvs commit: xml-security/src/org/apache/xml/security/transforms InvalidTransformException.java TransformationException.java

vdkoogh     2003/11/20 00:56:14

  Modified:    src/org/apache/xml/security/transforms
                        InvalidTransformException.java
                        TransformationException.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       +13 -13    xml-security/src/org/apache/xml/security/transforms/InvalidTransformException.java
  
  Index: InvalidTransformException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/transforms/InvalidTransformException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- InvalidTransformException.java	1 Oct 2001 08:36:11 -0000	1.1
  +++ InvalidTransformException.java	20 Nov 2003 08:56:14 -0000	1.2
  @@ -81,41 +81,41 @@
      /**
       * Constructor InvalidTransformException
       *
  -    * @param msgID
  +    * @param _msgId
       */
  -   public InvalidTransformException(String msgID) {
  -      super(msgID);
  +   public InvalidTransformException(String _msgId) {
  +      super(_msgId);
      }
   
      /**
       * Constructor InvalidTransformException
       *
  -    * @param msgID
  +    * @param _msgId
       * @param exArgs
       */
  -   public InvalidTransformException(String msgID, Object exArgs[]) {
  -      super(msgID, exArgs);
  +   public InvalidTransformException(String _msgId, Object exArgs[]) {
  +      super(_msgId, exArgs);
      }
   
      /**
       * Constructor InvalidTransformException
       *
  -    * @param msgID
  +    * @param _msgId
       * @param originalException
       */
  -   public InvalidTransformException(String msgID, Exception originalException) {
  -      super(msgID, originalException);
  +   public InvalidTransformException(String _msgId, Exception _originalException) {
  +      super(_msgId, _originalException);
      }
   
      /**
       * Constructor InvalidTransformException
       *
  -    * @param msgID
  +    * @param _msgId
       * @param exArgs
       * @param originalException
       */
  -   public InvalidTransformException(String msgID, Object exArgs[],
  -                                    Exception originalException) {
  -      super(msgID, exArgs, originalException);
  +   public InvalidTransformException(String _msgId, Object exArgs[],
  +                                    Exception _originalException) {
  +      super(_msgId, exArgs, _originalException);
      }
   }
  
  
  
  1.2       +13 -13    xml-security/src/org/apache/xml/security/transforms/TransformationException.java
  
  Index: TransformationException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/transforms/TransformationException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TransformationException.java	1 Oct 2001 08:36:11 -0000	1.1
  +++ TransformationException.java	20 Nov 2003 08:56:14 -0000	1.2
  @@ -81,41 +81,41 @@
      /**
       * Constructor TransformationException
       *
  -    * @param msgID
  +    * @param _msgID
       */
  -   public TransformationException(String msgID) {
  -      super(msgID);
  +   public TransformationException(String _msgID) {
  +      super(_msgID);
      }
   
      /**
       * Constructor TransformationException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       */
  -   public TransformationException(String msgID, Object exArgs[]) {
  -      super(msgID, exArgs);
  +   public TransformationException(String _msgID, Object exArgs[]) {
  +      super(_msgID, exArgs);
      }
   
      /**
       * Constructor TransformationException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param originalException
       */
  -   public TransformationException(String msgID, Exception originalException) {
  -      super(msgID, originalException);
  +   public TransformationException(String _msgID, Exception _originalException) {
  +      super(_msgID, _originalException);
      }
   
      /**
       * Constructor TransformationException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       * @param originalException
       */
  -   public TransformationException(String msgID, Object exArgs[],
  -                                  Exception originalException) {
  -      super(msgID, exArgs, originalException);
  +   public TransformationException(String _msgID, Object exArgs[],
  +                                  Exception _originalException) {
  +      super(_msgID, exArgs, _originalException);
      }
   }