diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 10:46:44 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 10:46:44 +0000 |
commit | 0a833f8f40fd5eeae4d4aabe2672175c9644baf2 (patch) | |
tree | 3e9eb0d8b53cb6f7d83e750906dab0d1211afaad | |
parent | 82e848de6d101b8b195b0b710473826a2c3c2197 (diff) |
INTEGRATION: CWS xmlfix2 (1.1.2); FILE ADDED
2008/04/16 11:49:09 mst 1.1.2.2: - offapi/com/sun/star/xml/xpath/XPathException.idl:
+ update the license header to LGPLv3
2008/03/31 14:03:46 mst 1.1.2.1: #i81678#: interface change: XXPathAPI
- offapi/com/sun/star/xml/xpath/XPathException.idl:
+ new file: new exception XPathException
- offapi/com/sun/star/xml/xpath/XXPathAPI.idl:
+ methods of XXPathAPI now throw XPathException on error conditions
+ improved documentation
- offapi/com/sun/star/xml/xpath/makefile.mk:
+ new file: XPathException.idl
-rw-r--r-- | offapi/com/sun/star/xml/xpath/XPathException.idl | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/offapi/com/sun/star/xml/xpath/XPathException.idl b/offapi/com/sun/star/xml/xpath/XPathException.idl new file mode 100644 index 000000000000..f8e6f04f9d16 --- /dev/null +++ b/offapi/com/sun/star/xml/xpath/XPathException.idl @@ -0,0 +1,53 @@ +/************************************************************************* +* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +* +* Copyright 2008 by Sun Microsystems, Inc. +* +* OpenOffice.org - a multi-platform office productivity suite +* +* $RCSfile: XPathException.idl,v $ +* +* $Revision: 1.2 $ +* +* This file is part of OpenOffice.org. +* +* OpenOffice.org is free software: you can redistribute it and/or modify +* it under the terms of the GNU Lesser General Public License version 3 +* only, as published by the Free Software Foundation. +* +* OpenOffice.org is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Lesser General Public License version 3 for more details +* (a copy is included in the LICENSE file that accompanied this code). +* +* You should have received a copy of the GNU Lesser General Public License +* version 3 along with OpenOffice.org. If not, see +* <http://www.openoffice.org/license.html> +* for a copy of the LGPLv3 License. +************************************************************************/ + +#ifndef __com_sun_star_xml_XPath_XPathException_idl__ +#define __com_sun_star_xml_XPath_XPathException_idl__ + +#ifndef __com_sun_star_uno_Exception_idl__ +#include <com/sun/star/uno/Exception.idl> +#endif + + +module com { module sun { module star { module xml { module xpath { + +//============================================================================= +/** Exception that may occur when evaluating an XPath expression. + + @since OOo 3.0 + + @see XXPathAPI + */ +exception XPathException : com::sun::star::uno::Exception +{ +}; + +}; }; }; }; }; + +#endif |