/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.cache.aop;
import org.jboss.util.NestedException;

/**
 * @author Ben Wang, Feb 11, 2004
 */
public class AopOperationNotSupportedException extends RuntimeException
{
   public AopOperationNotSupportedException()
   {
      super();
   }

   public AopOperationNotSupportedException(String msg)
   {
      super(msg);
   }

}