1*2be43276SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*2be43276SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*2be43276SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*2be43276SAndrew Rist * distributed with this work for additional information 6*2be43276SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*2be43276SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*2be43276SAndrew Rist * "License"); you may not use this file except in compliance 9*2be43276SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*2be43276SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*2be43276SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*2be43276SAndrew Rist * software distributed under the License is distributed on an 15*2be43276SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*2be43276SAndrew Rist * KIND, either express or implied. See the License for the 17*2be43276SAndrew Rist * specific language governing permissions and limitations 18*2be43276SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*2be43276SAndrew Rist *************************************************************/ 21*2be43276SAndrew Rist 22*2be43276SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir package com.sun.star.uno; 25cdf0e10cSrcweir 26cdf0e10cSrcweir 27cdf0e10cSrcweir /** 28cdf0e10cSrcweir * The mapping Exception. 29cdf0e10cSrcweir * The exception is replaced by the com.sun.star.lang.DisposedException. 30cdf0e10cSrcweir * @deprecated since UDK 3.0.2 31cdf0e10cSrcweir * <p> 32cdf0e10cSrcweir * @version $Revision: 1.6 $ $ $Date: 2008-04-11 11:28:00 $ 33cdf0e10cSrcweir * @see com.sun.star.uno.UnoRuntime 34cdf0e10cSrcweir * @see com.sun.star.uno.IQueryInterface 35cdf0e10cSrcweir * @see com.sun.star.uno.IBridge 36cdf0e10cSrcweir */ 37cdf0e10cSrcweir public class MappingException extends com.sun.star.uno.RuntimeException { 38cdf0e10cSrcweir /** 39cdf0e10cSrcweir * Contructs an empty <code>MappingException</code>. 40cdf0e10cSrcweir */ MappingException()41cdf0e10cSrcweir public MappingException() { 42cdf0e10cSrcweir super(); 43cdf0e10cSrcweir } 44cdf0e10cSrcweir 45cdf0e10cSrcweir /** 46cdf0e10cSrcweir * Contructs an <code>MappingException</code> with a detail message. 47cdf0e10cSrcweir * <p> 48cdf0e10cSrcweir * @param message the detail message. 49cdf0e10cSrcweir */ MappingException(String message)50cdf0e10cSrcweir public MappingException(String message) { 51cdf0e10cSrcweir super(message); 52cdf0e10cSrcweir } 53cdf0e10cSrcweir 54cdf0e10cSrcweir /** 55cdf0e10cSrcweir * Contructs an <code>MappingException</code> with a detail message 56cdf0e10cSrcweir * and a context. 57cdf0e10cSrcweir * <p> 58cdf0e10cSrcweir * @param message the detail message. 59cdf0e10cSrcweir * @param context the context. 60cdf0e10cSrcweir */ MappingException(String message, Object context)61cdf0e10cSrcweir public MappingException(String message, Object context) { 62cdf0e10cSrcweir super(message, context); 63cdf0e10cSrcweir } 64cdf0e10cSrcweir } 65cdf0e10cSrcweir 66cdf0e10cSrcweir 67