xref: /trunk/main/udkapi/com/sun/star/registry/CannotRegisterImplementationException.idl (revision ffd38472365e95f6a578737bc9a5eb0fac624a86)
1408a4873SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3408a4873SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4408a4873SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5408a4873SAndrew Rist * distributed with this work for additional information
6408a4873SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7408a4873SAndrew Rist * to you under the Apache License, Version 2.0 (the
8408a4873SAndrew Rist * "License"); you may not use this file except in compliance
9408a4873SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11408a4873SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13408a4873SAndrew Rist * Unless required by applicable law or agreed to in writing,
14408a4873SAndrew Rist * software distributed under the License is distributed on an
15408a4873SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16408a4873SAndrew Rist * KIND, either express or implied.  See the License for the
17408a4873SAndrew Rist * specific language governing permissions and limitations
18408a4873SAndrew Rist * under the License.
19cdf0e10cSrcweir *
20408a4873SAndrew Rist *************************************************************/
21408a4873SAndrew Rist
22408a4873SAndrew Rist
23cdf0e10cSrcweir#ifndef __com_sun_star_registry_CannotRegisterImplementationException_idl__
24cdf0e10cSrcweir#define __com_sun_star_registry_CannotRegisterImplementationException_idl__
25cdf0e10cSrcweir
26cdf0e10cSrcweir#ifndef __com_sun_star_uno_Exception_idl__
27cdf0e10cSrcweir#include <com/sun/star/uno/Exception.idl>
28cdf0e10cSrcweir#endif
29cdf0e10cSrcweir
30cdf0e10cSrcweir
31cdf0e10cSrcweir//=============================================================================
32cdf0e10cSrcweir
33cdf0e10cSrcweir module com {  module sun {  module star {  module registry {
34cdf0e10cSrcweir
35cdf0e10cSrcweir//=============================================================================
36cdf0e10cSrcweir
37cdf0e10cSrcweir// DocMerge from xml: exception com::sun::star::registry::CannotRegisterImplementationException
38cdf0e10cSrcweir/** is thrown when an application tries to register a new component (implementation) using the
39cdf0e10cSrcweir    <member>XImplementationRegistration::registerImplementation()</member>
40cdf0e10cSrcweir    method, but the component cannot be registered. The reason for this exception could be:<br>
41cdf0e10cSrcweir    <br><ul>
42cdf0e10cSrcweir    <li>the component cannot be found or cannot be loaded (missing path or classpath)
43*4847aa32SJohn Bampton    <li>the component doesn't provide the necessary specifications (exported registration functions for a
44cdf0e10cSrcweir    C++ component (shared library) or a named registration class with the appropriate methods for
45cdf0e10cSrcweir    a Java component (normally a jar file)).
46cdf0e10cSrcweir    </ul><br>
47cdf0e10cSrcweir
48cdf0e10cSrcweir */
49cdf0e10cSrcweirpublished exception CannotRegisterImplementationException: com::sun::star::uno::Exception
50cdf0e10cSrcweir{
51cdf0e10cSrcweir};
52cdf0e10cSrcweir
53cdf0e10cSrcweir//=============================================================================
54cdf0e10cSrcweir
55cdf0e10cSrcweir}; }; }; };
56cdf0e10cSrcweir
57cdf0e10cSrcweir/*=============================================================================
58cdf0e10cSrcweir
59cdf0e10cSrcweir=============================================================================*/
60cdf0e10cSrcweir#endif
61