KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > invicta > dumper > InvictaDumperException


1 /*
2  *
3  */

4 package net.sf.invicta.dumper;
5
6 import net.sf.invicta.InvictaException;
7
8
9 /**
10  * An exception that is thrown by dumpers.
11  */

12 public class InvictaDumperException extends InvictaException {
13
14     /**
15      * @param dumper
16      * @param message
17      */

18     public InvictaDumperException(InvictaDumper dumper, String JavaDoc message) {
19         super(dumper.getName() + ": " + message);
20     }
21
22 }
23
Popular Tags