KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > aop > AopOperationNotSupportedException


1 /*
2 * JBoss, the OpenSource J2EE webOS
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */

7 package org.jboss.cache.aop;
8 import org.jboss.util.NestedException;
9
10 /**
11  * @author Ben Wang, Feb 11, 2004
12  */

13 public class AopOperationNotSupportedException extends RuntimeException JavaDoc
14 {
15    public AopOperationNotSupportedException()
16    {
17       super();
18    }
19
20    public AopOperationNotSupportedException(String JavaDoc msg)
21    {
22       super(msg);
23    }
24
25 }
26
27
Popular Tags