KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > invicta > InvictaException


1 package net.sf.invicta;
2  
3 /**
4  * The root exception class for the Invicta application.
5  */

6 public class InvictaException extends Exception JavaDoc {
7
8     /**
9      *
10      * @param message A free text message of the exception.
11      */

12     public InvictaException(String JavaDoc message) {
13         super(message);
14     }
15 }
16
Popular Tags