1 /* *****************************************************************************2 * DataSourceException.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.data;11 12 /**13 * General exception used by data sources.14 */15 public class DataSourceException16 extends Exception 17 {18 /**19 * Constructs a DataSourceException with no specified detail message.20 */21 public DataSourceException()22 {23 super();24 }25 26 /**27 * Constructs a DataSourceException with a detail message.28 * @param s the detail message.29 */30 public DataSourceException(String s)31 {32 super(s);33 }34 }35