From 8c14ad5e0de50cecfea09bb1eb6ba96a6895aa3e Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Wed, 30 Jan 2008 08:33:52 +0000 Subject: 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 --- .../com/sun/star/lang/NotInitializedException.idl | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 udkapi/com/sun/star/lang/NotInitializedException.idl 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 +#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 -- cgit