package us.deans.panther; /** * Generic Exception used for code that requires a new exception type but for which there * isn't a type already defined. So anything I want can generate a ppCustomException * *

 * anyclass.anymethod(anyvariable);
 * 
* * @author deans * @version 1.0 */ public class ppCustomException extends RuntimeException { private static final long serialVersionUID = 1L; public ppCustomException(){ super(); } public ppCustomException(String message){ super(message); } }