01: /******************************************************************************
02: * DataCompilerException.java
03: * ****************************************************************************/package org.openlaszlo.xml.internal;
04:
05: public class DataCompilerException extends Exception {
06:
07: public DataCompilerException() {
08: super ();
09: }
10:
11: public DataCompilerException(String s) {
12: super(s);
13: }
14: }
|