You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/09/04 10:25:19 UTC

svn commit: r572577 - /webservices/axis2/trunk/c/util/src/error.c

Author: samisa
Date: Tue Sep  4 01:25:18 2007
New Revision: 572577

URL: http://svn.apache.org/viewvc?rev=572577&view=rev
Log:
Fixed the error message returned in case of undefined custom error

Modified:
    webservices/axis2/trunk/c/util/src/error.c

Modified: webservices/axis2/trunk/c/util/src/error.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/error.c?rev=572577&r1=572576&r2=572577&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/error.c (original)
+++ webservices/axis2/trunk/c/util/src/error.c Tue Sep  4 01:25:18 2007
@@ -558,7 +558,7 @@
 			else if (error->error_number == AXIS2_ERROR_NONE)
 				message = axutil_error_messages[AXIS2_ERROR_NONE];
 			else 
-				message = "Invalid Error Number";
+				message = "Undefined error returned by business logic implementation";
 		}
 	}
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org