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/12/19 23:09:16 UTC

cvs commit: xml-xalan/c/src/XSLT XSLTProcessorException.cpp XSLTProcessorException.hpp

dbertoni    01/12/19 14:09:16

  Modified:    c/src/XSLT XSLTProcessorException.cpp
                        XSLTProcessorException.hpp
  Log:
  Added and updated constructors.
  
  Revision  Changes    Path
  1.5       +10 -0     xml-xalan/c/src/XSLT/XSLTProcessorException.cpp
  
  Index: XSLTProcessorException.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTProcessorException.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XSLTProcessorException.cpp	2001/07/12 05:06:06	1.4
  +++ XSLTProcessorException.cpp	2001/12/19 22:09:16	1.5
  @@ -76,6 +76,16 @@
   
   
   XSLTProcessorException::XSLTProcessorException(
  +			const Locator&			theLocator,
  +			const XalanDOMString&	theMessage,
  +			const XalanDOMString&	theType) :
  +	XSLException(theLocator, theMessage, theType)
  +{
  +}
  +
  +
  +
  +XSLTProcessorException::XSLTProcessorException(
   		const XalanDOMString&	theMessage,
   		const XalanDOMString&	theType) :
   	XSLException(theMessage, theType)
  
  
  
  1.6       +12 -0     xml-xalan/c/src/XSLT/XSLTProcessorException.hpp
  
  Index: XSLTProcessorException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTProcessorException.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XSLTProcessorException.hpp	2001/07/12 05:06:07	1.5
  +++ XSLTProcessorException.hpp	2001/12/19 22:09:16	1.6
  @@ -90,6 +90,18 @@
   		const XalanDOMString&	theType = XalanDOMString(XALAN_STATIC_UCODE_STRING("XSLTProcessorException")));
   
   	/**
  +	 * Constructor
  +	 * 
  +	 * @param theLocator The locator instance for error reporting.
  +	 * @param theMessage message to write when exception thrown
  +	 * @param theType type of exception, default is "XSLTProcessorException"
  +	 */
  +	XSLTProcessorException(
  +			const Locator&			theLocator,
  +			const XalanDOMString&	theMessage,
  +			const XalanDOMString&	theType = XalanDOMString(XALAN_STATIC_UCODE_STRING("XSLTProcessorException")));
  +
  +	/**
   	 * Construct an XSLT Processor exception object
   	 * 
   	 * @param theMessage message to print when exception thrown
  
  
  

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