KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > invicta > handler > InvictaHandlerException


1 package net.sf.invicta.handler;
2
3 import net.sf.invicta.InvictaException;
4
5 /**
6  *
7  */

8 public class InvictaHandlerException extends InvictaException {
9     
10
11     /**
12      *
13      * @param handler
14      * @param message
15      */

16     public InvictaHandlerException(InvictaHandler handler, String JavaDoc message) {
17         super(handler.getName() + ": " + message);
18     }
19     
20 }
21
Popular Tags