1 /*2 * JBoss, the OpenSource J2EE webOS3 *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, 200412 */13 public class AopOperationNotSupportedException extends RuntimeException 14 {15 public AopOperationNotSupportedException()16 {17 super();18 }19 20 public AopOperationNotSupportedException(String msg)21 {22 super(msg);23 }24 25 }26 27