1 /******************************************************************************2 * DataEncoderException.java3 * ****************************************************************************/4 5 /* J_LZ_COPYRIGHT_BEGIN *******************************************************6 * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *7 * Use is subject to license terms. *8 * J_LZ_COPYRIGHT_END *********************************************************/9 10 package org.openlaszlo.xml;11 12 /**13 * General exception used by the DataEncoder.14 */15 public class DataEncoderException extends Exception {16 17 /**18 * Constructs a DataEncoderException with no specified detail message.19 */20 public DataEncoderException()21 {22 super();23 }24 25 /**26 * Constructs a DataEncoderException with a detail message.27 * @param s the detail message.28 */29 public DataEncoderException(String s)30 {31 super(s);32 }33 }34