01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package org.apache.commons.configuration;
19:
20: /**
21: * Exception thrown when a property is incompatible with the type requested.
22: *
23: * @since 1.0
24: *
25: * @author Emmanuel Bourg
26: * @version $Revision: 439648 $, $Date: 2006-09-02 22:42:10 +0200 (Sa, 02 Sep 2006) $
27: */
28: public class ConversionException extends ConfigurationRuntimeException {
29: /**
30: * The serial version UID.
31: */
32: private static final long serialVersionUID = -5167943099293540392L;
33:
34: /**
35: * Constructs a new <code>ConversionException</code> without specified
36: * detail message.
37: */
38: public ConversionException() {
39: super ();
40: }
41:
42: /**
43: * Constructs a new <code>ConversionException</code> with specified
44: * detail message.
45: *
46: * @param message the error message
47: */
48: public ConversionException(String message) {
49: super (message);
50: }
51:
52: /**
53: * Constructs a new <code>ConversionException</code> with specified
54: * nested <code>Throwable</code>.
55: *
56: * @param cause the exception or error that caused this exception to be thrown
57: */
58: public ConversionException(Throwable cause) {
59: super (cause);
60: }
61:
62: /**
63: * Constructs a new <code>ConversionException</code> with specified
64: * detail message and nested <code>Throwable</code>.
65: *
66: * @param message the error message
67: * @param cause the exception or error that caused this exception to be thrown
68: */
69: public ConversionException(String message, Throwable cause) {
70: super(message, cause);
71: }
72: }
|