src/com/sun/org/apache/xml/internal/dtm/DTMConfigurationException.java

Print this page




  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 /*
  21  * $Id: DTMConfigurationException.java,v 1.2.4.1 2005/09/15 08:14:52 suresh_emailid Exp $
  22  */
  23 package com.sun.org.apache.xml.internal.dtm;
  24 
  25 import javax.xml.transform.SourceLocator;
  26 
  27 /**
  28  * Indicates a serious configuration error.
  29  */
  30 public class DTMConfigurationException extends DTMException {
  31     static final long serialVersionUID = -4607874078818418046L;
  32 
  33     /**
  34      * Create a new <code>DTMConfigurationException</code> with no
  35      * detail mesage.
  36      */
  37     public DTMConfigurationException() {
  38         super("Configuration Error");
  39     }
  40 
  41     /**
  42      * Create a new <code>DTMConfigurationException</code> with
  43      * the <code>String </code> specified as an error message.
  44      *
  45      * @param msg The error message for the exception.
  46      */
  47     public DTMConfigurationException(String msg) {
  48         super(msg);
  49     }
  50 
  51     /**
  52      * Create a new <code>DTMConfigurationException</code> with a
  53      * given <code>Exception</code> base cause of the error.
  54      *
  55      * @param e The exception to be encapsulated in a




  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 /*
  21  * $Id: DTMConfigurationException.java,v 1.2.4.1 2005/09/15 08:14:52 suresh_emailid Exp $
  22  */
  23 package com.sun.org.apache.xml.internal.dtm;
  24 
  25 import javax.xml.transform.SourceLocator;
  26 
  27 /**
  28  * Indicates a serious configuration error.
  29  */
  30 public class DTMConfigurationException extends DTMException {
  31     static final long serialVersionUID = -4607874078818418046L;
  32 
  33     /**
  34      * Create a new <code>DTMConfigurationException</code> with no
  35      * detail message.
  36      */
  37     public DTMConfigurationException() {
  38         super("Configuration Error");
  39     }
  40 
  41     /**
  42      * Create a new <code>DTMConfigurationException</code> with
  43      * the <code>String </code> specified as an error message.
  44      *
  45      * @param msg The error message for the exception.
  46      */
  47     public DTMConfigurationException(String msg) {
  48         super(msg);
  49     }
  50 
  51     /**
  52      * Create a new <code>DTMConfigurationException</code> with a
  53      * given <code>Exception</code> base cause of the error.
  54      *
  55      * @param e The exception to be encapsulated in a