merge the formfield patch from ooo-build
[ooovba.git] / jurt / com / sun / star / uno / MappingException.java
blob4ec294272c76267f9b69e98b0cf0fe23c4d6638a
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: MappingException.java,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 package com.sun.star.uno;
34 /**
35 * The mapping Exception.
36 * The exception is replaced by the com.sun.star.lang.DisposedException.
37 * @deprecated since UDK 3.0.2
38 * <p>
39 * @version $Revision: 1.6 $ $ $Date: 2008-04-11 11:28:00 $
40 * @see com.sun.star.uno.UnoRuntime
41 * @see com.sun.star.uno.IQueryInterface
42 * @see com.sun.star.uno.IBridge
44 public class MappingException extends com.sun.star.uno.RuntimeException {
45 /**
46 * Contructs an empty <code>MappingException</code>.
48 public MappingException() {
49 super();
52 /**
53 * Contructs an <code>MappingException</code> with a detail message.
54 * <p>
55 * @param message the detail message.
57 public MappingException(String message) {
58 super(message);
61 /**
62 * Contructs an <code>MappingException</code> with a detail message
63 * and a context.
64 * <p>
65 * @param message the detail message.
66 * @param context the context.
68 public MappingException(String message, Object context) {
69 super(message, context);