01: /******************************************************************************
02: * DataEncoderException.java
03: * ****************************************************************************/package org.openlaszlo.xml;
04:
05: /**
06: * General exception used by the DataEncoder.
07: */
08: public class DataEncoderException extends Exception {
09:
10: /**
11: * Constructs a DataEncoderException with no specified detail message.
12: */
13: public DataEncoderException() {
14: super ();
15: }
16:
17: /**
18: * Constructs a DataEncoderException with a detail message.
19: * @param s the detail message.
20: */
21: public DataEncoderException(String s) {
22: super(s);
23: }
24: }
|