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 org.codehaus.nanning;
9
10 /***
11 * Base class for exceptions related to aspects.
12 *
13 * <!-- $Id: AspectException.java,v 1.1 2003/07/04 10:53:59 lecando Exp $ -->
14 *
15 * @author $Author: lecando $
16 * @version $Revision: 1.1 $
17 */
18 public class AspectException extends RuntimeException {
19 ///CLOVER:OFF
20 public AspectException() {
21 }
22 ///CLOVER:ON
23
24 public AspectException(String message) {
25 super(message);
26 }
27
28 public AspectException(Throwable e) {
29 super(e);
30 }
31
32 public AspectException(String message, Throwable cause) {
33 super(message, cause);
34 }
35 }
This page was automatically generated by Maven