You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@apache.org on 2001/01/03 11:09:33 UTC

cvs commit: xml-xalan/java/src/org/apache/xml/utils URI.java

sboag       01/01/03 02:09:33

  Modified:    java/src/org/apache/xml/utils URI.java
  Log:
  Add URI string to error message.
  
  Revision  Changes    Path
  1.5       +2 -2      xml-xalan/java/src/org/apache/xml/utils/URI.java
  
  Index: URI.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/utils/URI.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- URI.java	2001/01/02 03:42:50	1.4
  +++ URI.java	2001/01/03 10:09:32	1.5
  @@ -88,7 +88,7 @@
    * default port for a specific scheme). Rather, it only knows the
    * grammar and basic set of operations that can be applied to a URI.
    *
  - * @version  $Id: URI.java,v 1.4 2001/01/02 03:42:50 sboag Exp $
  + * @version  $Id: URI.java,v 1.5 2001/01/03 10:09:32 sboag Exp $
    *
    */
   public class URI implements Serializable
  @@ -423,7 +423,7 @@
       {
         if (p_base == null)
         {
  -        throw new MalformedURIException("No scheme found in URI.");
  +        throw new MalformedURIException("No scheme found in URI: "+uriSpec);
         }
       }
       else