This goes as CTR and was not applied to trunk.
If voting is needed, count me as +1 for this.

2010/11/19  <ma...@apache.org>:
> Author: markt
> Date: Fri Nov 19 19:01:34 2010
> New Revision: 1036981
>
> URL: http://svn.apache.org/viewvc?rev=1036981&view=rev
> Log:
> Additional info for https://issues.apache.org/bugzilla/show_bug.cgi?id=50273
> Add the error number to the message
>
> Modified:
>    tomcat/tc6.0.x/trunk/java/org/apache/tomcat/jni/Error.java
>
> Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/jni/Error.java
> URL: 
> http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/tomcat/jni/Error.java?rev=1036981&r1=1036980&r2=1036981&view=diff
> ==============================================================================
> --- tomcat/tc6.0.x/trunk/java/org/apache/tomcat/jni/Error.java (original)
> +++ tomcat/tc6.0.x/trunk/java/org/apache/tomcat/jni/Error.java Fri Nov 19 
> 19:01:34 2010
> @@ -43,7 +43,7 @@ public class Error extends Exception {
>      */
>     private Error(int error, String description)
>     {
> -        super(description);
> +        super(error + ": " + description);
>         this.error = error;
>         this.description = description;
>     }
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to