01: /*
02: * Created on 05.07.2004
03: * Created by crappy eclipse.
04: */
05: package org.jzonic.jlo.error;
06:
07: /**
08: * This error reporter will not write out any error message.
09: *
10: * @author Mecky
11: */
12: public class NullDeviceErrorReporter implements ErrorReporter {
13:
14: /* (non-Javadoc)
15: * @see org.jzonic.jlo.error.ErrorReporter#reportError(java.lang.String)
16: */
17: public void reportError(String message) {
18: }
19:
20: /* (non-Javadoc)
21: * @see org.jzonic.jlo.error.ErrorReporter#reportError(java.lang.String, java.lang.Throwable)
22: */
23: public void reportError(String message, Throwable thrown) {
24: }
25:
26: /* (non-Javadoc)
27: * @see org.jzonic.jlo.error.ErrorReporter#reportError(java.lang.Throwable)
28: */
29: public void reportError(Throwable thrown) {
30: }
31:
32: }
|