/**
  * File: 		InvalidGroupHandlerException.java
  * Content: 	part of the RMI specification of sensei gmns
  * Author: 	LuisM Pena
  * Date: 		1st December 2001
  * Version:  0.29.00
  * Last change:
  *
  **/


package sensei.middleware.gmns;

import java.rmi.RemoteException;

final public class InvalidGroupHandlerException extends RemoteException
{
    public
    InvalidGroupHandlerException()
    {
        super();
    }

    public
    InvalidGroupHandlerException(String _reason)
    {
      super(_reason);
    }

}