KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > etymon > pj > exception > PjException


1 package com.etymon.pj.exception;
2
3 /**
4    The base class for all exceptions within this package.
5    @author Nassib Nassar
6 */

7 public class PjException
8     extends Exception JavaDoc {
9
10     /**
11        Creates a PjException with a detailed message.
12        @param s the detailed message.
13     */

14     public PjException(String JavaDoc s) {
15         super(s);
16     }
17     
18 }
19
Popular Tags