All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jawnae.pyronet.PyroException Maven / Gradle / Ivy

The newest version!
/*
 * Created on 3 dec 2009
 */

package jawnae.pyronet;

public class PyroException extends RuntimeException
{
   public PyroException()
   {
      super();
   }

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

   public PyroException(String msg, Throwable cause)
   {
      super(msg, cause);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy