01: // $Id: RuntimeIOException.java 12 2007-08-29 05:23:13Z jcamaia $
02:
03: package net.sf.persist;
04:
05: @SuppressWarnings("serial")
06: public final class RuntimeIOException extends RuntimeException {
07:
08: public RuntimeIOException(final Throwable cause) {
09: super (cause);
10: }
11:
12: public RuntimeIOException(final String message) {
13: super (message);
14: }
15:
16: public RuntimeIOException(final String message,
17: final Throwable cause) {
18: super(message, cause);
19: }
20:
21: }
|