On 22/11/2010 14:08, Konstantin Kolinko wrote: > This goes as CTR and was not applied to trunk. > If voting is needed, count me as +1 for this.
Sorry - that was my mistake. I committed to 6.0.x rather than trunk. I'll fix trunk in a sec. If it gets another quick +1 I'll leave it, else I'll revert it later today. Mark > > 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 > --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org