286N/A/*
286N/A * reserved comment block
286N/A * DO NOT REMOVE OR ALTER!
286N/A */
286N/A/*
286N/A * Copyright 2001-2005 The Apache Software Foundation.
286N/A *
286N/A * Licensed under the Apache License, Version 2.0 (the "License");
286N/A * you may not use this file except in compliance with the License.
286N/A * You may obtain a copy of the License at
286N/A *
286N/A * http://www.apache.org/licenses/LICENSE-2.0
286N/A *
286N/A * Unless required by applicable law or agreed to in writing, software
286N/A * distributed under the License is distributed on an "AS IS" BASIS,
286N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
286N/A * See the License for the specific language governing permissions and
286N/A * limitations under the License.
286N/A */
286N/A
286N/Apackage com.sun.org.apache.xerces.internal.utils;
286N/A
286N/A/**
286N/A * A configuration error. This was an internal class in ObjectFactory previously
286N/A */
286N/Apublic final class ConfigurationError
286N/A extends Error {
286N/A
286N/A //
286N/A // Data
286N/A //
286N/A
286N/A /** Exception. */
286N/A private Exception exception;
286N/A
286N/A //
286N/A // Constructors
286N/A //
286N/A
286N/A /**
286N/A * Construct a new instance with the specified detail string and
286N/A * exception.
286N/A */
286N/A ConfigurationError(String msg, Exception x) {
286N/A super(msg);
286N/A this.exception = x;
286N/A } // <init>(String,Exception)
286N/A
286N/A //
286N/A // methods
286N/A //
286N/A
286N/A /** Returns the exception associated to this error. */
286N/A public Exception getException() {
286N/A return exception;
286N/A } // getException():Exception
286N/A
286N/A} // class ConfigurationError