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 10:01:18 UTC

cvs commit: xml-security/src/org/apache/xml/security/utils/resolver ResourceResolverException.java

vdkoogh     2003/11/20 01:01:18

  Modified:    src/org/apache/xml/security/utils/resolver
                        ResourceResolverException.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.3       +13 -13    xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolverException.java
  
  Index: ResourceResolverException.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src/org/apache/xml/security/utils/resolver/ResourceResolverException.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ResourceResolverException.java	11 Feb 2003 16:02:54 -0000	1.2
  +++ ResourceResolverException.java	20 Nov 2003 09:01:18 -0000	1.3
  @@ -76,13 +76,13 @@
      /**
       * Constructor ResourceResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param uri
       * @param BaseURI
       */
  -   public ResourceResolverException(String msgID, Attr uri, String BaseURI) {
  +   public ResourceResolverException(String _msgID, Attr uri, String BaseURI) {
   
  -      super(msgID);
  +      super(_msgID);
   
         this._uri = uri;
         this._BaseURI = BaseURI;
  @@ -91,15 +91,15 @@
      /**
       * Constructor ResourceResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       * @param uri
       * @param BaseURI
       */
  -   public ResourceResolverException(String msgID, Object exArgs[], Attr uri,
  +   public ResourceResolverException(String _msgID, Object exArgs[], Attr uri,
                                       String BaseURI) {
   
  -      super(msgID, exArgs);
  +      super(_msgID, exArgs);
   
         this._uri = uri;
         this._BaseURI = BaseURI;
  @@ -108,15 +108,15 @@
      /**
       * Constructor ResourceResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param originalException
       * @param uri
       * @param BaseURI
       */
  -   public ResourceResolverException(String msgID, Exception originalException,
  +   public ResourceResolverException(String _msgID, Exception _originalException,
                                       Attr uri, String BaseURI) {
   
  -      super(msgID, originalException);
  +      super(_msgID, _originalException);
   
         this._uri = uri;
         this._BaseURI = BaseURI;
  @@ -125,17 +125,17 @@
      /**
       * Constructor ResourceResolverException
       *
  -    * @param msgID
  +    * @param _msgID
       * @param exArgs
       * @param originalException
       * @param uri
       * @param BaseURI
       */
  -   public ResourceResolverException(String msgID, Object exArgs[],
  -                                    Exception originalException, Attr uri,
  +   public ResourceResolverException(String _msgID, Object exArgs[],
  +                                    Exception _originalException, Attr uri,
                                       String BaseURI) {
   
  -      super(msgID, exArgs, originalException);
  +      super(_msgID, exArgs, _originalException);
   
         this._uri = uri;
         this._BaseURI = BaseURI;