You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/02/27 20:08:11 UTC

cvs commit: xml-xalan/c/src/XalanDOM XalanDOMException.hpp

dbertoni    01/02/27 11:08:11

  Modified:    c/src/XalanDOM XalanDOMException.hpp
  Log:
  Changed UNKNOWN to UNKNOWN_ERR to avoid conflicts with UNKNOWN.
  
  Revision  Changes    Path
  1.3       +2 -2      xml-xalan/c/src/XalanDOM/XalanDOMException.hpp
  
  Index: XalanDOMException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XalanDOM/XalanDOMException.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XalanDOMException.hpp	2000/04/11 20:03:43	1.2
  +++ XalanDOMException.hpp	2001/02/27 19:08:10	1.3
  @@ -97,7 +97,7 @@
   
   		// This is the first available number,
   		// according to the spec.
  -		UNKNOWN 					= 201
  +		UNKNOWN_ERR 				= 201
   	};
   	//@}
   
  @@ -110,7 +110,7 @@
   	  * @param code The error code which indicates the exception
   	  */
   	explicit
  -	XalanDOMException(ExceptionCode 	code = UNKNOWN);
  +	XalanDOMException(ExceptionCode 	code = UNKNOWN_ERR);
   
   	/**
   	  * Copy constructor.