KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > AspectException


1 /*
2  * Nanning Aspects
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  * (C) 2003 Jon Tirsen
7  */

8 package com.tirsen.nanning;
9
10 /**
11  * Base class for exceptions related to aspects.
12  *
13  * <!-- $Id: AspectException.java,v 1.6 2003/05/23 07:43:39 lecando Exp $ -->
14  *
15  * @author $Author: lecando $
16  * @version $Revision: 1.6 $
17  */

18 public class AspectException extends RuntimeException JavaDoc {
19 ///CLOVER:OFF
20
public AspectException() {
21     }
22 ///CLOVER:ON
23

24     public AspectException(String JavaDoc message) {
25         super(message);
26     }
27
28     public AspectException(Throwable JavaDoc e) {
29         super(e);
30     }
31
32     public AspectException(String JavaDoc message, Throwable JavaDoc cause) {
33         super(message, cause);
34     }
35 }
36
Popular Tags