diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-01-30 08:33:52 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-01-30 08:33:52 +0000 |
commit | 8c14ad5e0de50cecfea09bb1eb6ba96a6895aa3e (patch) | |
tree | df763e5d40584d5c3e2f83e8eaebdea33570d3cc /udkapi | |
parent | 1c54c21f6c27e877b56b67362fda11686bef331e (diff) |
INTEGRATION: CWS dba24d (1.1.2); FILE ADDED
2007/11/08 21:33:56 fs 1.1.2.1: #i81658# NotInitializedException - used to indicate the a component was not initialized, yet, but an attempt to use it was made
Diffstat (limited to 'udkapi')
-rw-r--r-- | udkapi/com/sun/star/lang/NotInitializedException.idl | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/udkapi/com/sun/star/lang/NotInitializedException.idl b/udkapi/com/sun/star/lang/NotInitializedException.idl new file mode 100644 index 000000000000..a2d93aed7b7c --- /dev/null +++ b/udkapi/com/sun/star/lang/NotInitializedException.idl @@ -0,0 +1,64 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: NotInitializedException.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: rt $ $Date: 2008-01-30 09:33:52 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library 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 for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ + +#ifndef __com_sun_star_lang_NotInitializedException_idl__ +#define __com_sun_star_lang_NotInitializedException_idl__ + +#ifndef __com_sun_star_uno_RuntimeException_idl__ +#include <com/sun/star/uno/RuntimeException.idl> +#endif + +//============================================================================= + +module com { module sun { module star { module lang { + +//============================================================================= + +/** + */ +/** is thrown when a component is attempted to be used before it was + completely constructed. +*/ +published exception NotInitializedException : com::sun::star::uno::RuntimeException +{ +}; + +//============================================================================= + +}; }; }; }; + +//============================================================================= + +#endif |