import java.io.UnsupportedEncodingException;
import Message;

public class MessageAct extends Message
{
   private byte [] data;
   public MessageAct( String text )
   {
      super( Message.Action );
      try { data = text.getBytes("ascii"); }
      catch( UnsupportedEncodingException e ) {}
   }
   public byte[] getBytes()
   {
      return data;
   }
}

