You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by jv...@locus.apache.org on 2000/12/19 16:33:19 UTC

cvs commit: jakarta-velocity/src/java/org/apache/velocity/runtime/resource ContentResource.java

jvanzyl     00/12/19 07:33:17

  Modified:    src/java/org/apache/velocity/runtime/resource
                        ContentResource.java
  Log:
  - fixing error message.
  
  Revision  Changes    Path
  1.2       +2 -2      jakarta-velocity/src/java/org/apache/velocity/runtime/resource/ContentResource.java
  
  Index: ContentResource.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/resource/ContentResource.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ContentResource.java	2000/12/19 05:30:05	1.1
  +++ ContentResource.java	2000/12/19 15:33:16	1.2
  @@ -66,7 +66,7 @@
    * sources.
    *
    * @author <a href="mailto:jvanzyl@periapt.com">Jason van Zyl</a>
  - * @version $Id: ContentResource.java,v 1.1 2000/12/19 05:30:05 jvanzyl Exp $
  + * @version $Id: ContentResource.java,v 1.2 2000/12/19 15:33:16 jvanzyl Exp $
    */
   public class ContentResource extends Resource
   {
  @@ -97,7 +97,7 @@
           }
           catch ( Exception e ) 
           {
  -            Runtime.error("#include() : " + e.toString() );
  +            Runtime.error("Cannot process content resource : " + e.toString() );
               return false;
           }
       }