You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by js...@apache.org on 2002/06/25 18:49:45 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly JellyException.java

jstrachan    2002/06/25 09:49:45

  Modified:    jelly/src/java/org/apache/commons/jelly JellyException.java
  Log:
  switched around the line & column messages in exceptions...
  
  Revision  Changes    Path
  1.5       +7 -7      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/JellyException.java
  
  Index: JellyException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/JellyException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- JellyException.java	21 Jun 2002 02:57:17 -0000	1.4
  +++ JellyException.java	25 Jun 2002 16:49:45 -0000	1.5
  @@ -142,8 +142,8 @@
       }
       
       public String getMessage() {
  -        return super.getMessage() + " At column: " 
  -            + columnNumber + " line: " + lineNumber;
  +        return super.getMessage() + " At line: " 
  +            + lineNumber + " column: " + columnNumber;
       }
       // #### overload the printStackTrace methods...
       public void printStackTrace(PrintWriter s) { 
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>