01: package com.etymon.pj.exception;
02:
03: /**
04: The base class for all exceptions within this package.
05: @author Nassib Nassar
06: */
07: public class PjException extends Exception {
08:
09: /**
10: Creates a PjException with a detailed message.
11: @param s the detailed message.
12: */
13: public PjException(String s) {
14: super(s);
15: }
16:
17: }
|