1 /*************************************************
2 * Copyright (c) Shen Li. All rights reserved. *
3 * http://joyaop.sourceforge.net *
4 * -------------------------------------------- *
5 * Distributable under LGPL license. *
6 * See terms of license at gnu.org. *
7 ************************************************/
8 package net.sf.joyaop;
9
10 /***
11 * @author Shen Li
12 */
13 public class AspectRuntimeException extends RuntimeException {
14 public AspectRuntimeException() {
15 super();
16 }
17
18 public AspectRuntimeException(String msg) {
19 super(msg);
20 }
21
22 public AspectRuntimeException(String msg, Throwable t) {
23 super(msg, t);
24 }
25
26 public AspectRuntimeException(Throwable t) {
27 super(t);
28 }
29 }