01: /*
02: *
03: */
04: package net.sf.invicta.dumper;
05:
06: import net.sf.invicta.InvictaException;
07:
08: /**
09: * An exception that is thrown by dumpers.
10: */
11: public class InvictaDumperException extends InvictaException {
12:
13: /**
14: * @param dumper
15: * @param message
16: */
17: public InvictaDumperException(InvictaDumper dumper, String message) {
18: super (dumper.getName() + ": " + message);
19: }
20:
21: }
|