KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > definition > ConfigureException


1 /*
2  * Nanning Aspects
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package com.tirsen.nanning.definition;
8
9 /**
10  * TODO document ConfigureException
11  *
12  * <!-- $Id: ConfigureException.java,v 1.5 2003/05/22 20:18:32 tirsen Exp $ -->
13  *
14  * @author $Author: tirsen $
15  * @version $Revision: 1.5 $
16  *
17  * @deprecated please use the new {@link com.tirsen.nanning.config.AspectSystem} framework instead.
18  */

19 public class ConfigureException extends RuntimeException JavaDoc {
20     public ConfigureException() {
21     }
22
23     public ConfigureException(Throwable JavaDoc cause) {
24         super(cause);
25     }
26
27     public ConfigureException(String JavaDoc message) {
28         super(message);
29     }
30 }
31
Popular Tags