KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > property > PropertyException


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package org.apache.avalon.excalibur.property;
9
10 import org.apache.avalon.framework.CascadingException;
11
12 /**
13  * Thrown when a property can not be resolved properly.
14  *
15  * @author <a HREF="mailto:peter@apache.org">Peter Donald</a>
16  * @version CVS $Revision: 1.4 $ $Date: 2001/12/11 09:53:32 $
17  * @since 4.0
18  */

19 public class PropertyException
20     extends CascadingException
21 {
22     /**
23      * Construct a new <code>PropertyException</code> instance.
24      *
25      * @param message The detail message for this exception.
26      */

27     public PropertyException( final String JavaDoc message )
28     {
29         this( message, null );
30     }
31
32     /**
33      * Construct a new <code>PropertyException</code> instance.
34      *
35      * @param message The detail message for this exception.
36      * @param throwable the root cause of the exception
37      */

38     public PropertyException( final String JavaDoc message, final Throwable JavaDoc throwable )
39     {
40         super( message, throwable );
41     }
42 }
43
Popular Tags