/* 1*/  /*********************************************************************************
/* 2*/   * 
/* 3*/   *      PacketFilteringException クラス
/* 4*/   * 
/* 5*/   *  パケットフィルタリング用例外
/* 6*/   * 
/* 7*/  ********************************************************************************/
/* 8*/  
/* 9*/  package WinPacketFiltering;
/*10*/  
/*11*/  public class PacketFilteringException extends Exception
/*12*/  {
/*13*/      private static final long serialVersionUID = -4558263563051793378L;
/*14*/  
/*15*/      public PacketFilteringException()
/*16*/      {
/*17*/      }
/*18*/  
/*19*/      public PacketFilteringException(String s)
/*20*/      {
/*21*/          super(s);
/*22*/      }
/*23*/  
/*24*/      public PacketFilteringException(String s, Throwable throwable)
/*25*/      {
/*26*/          super(s, throwable);
/*27*/      }
/*28*/  
/*29*/      public PacketFilteringException(Throwable throwable)
/*30*/      {
/*31*/          super(throwable);
/*32*/      }
/*33*/  }
inserted by FC2 system