< prev index next >

src/java.xml/share/classes/javax/xml/parsers/FactoryConfigurationError.java

Print this page




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.parsers;
  27 
  28 /**
  29  * Thrown when a problem with configuration with the Parser Factories
  30  * exists. This error will typically be thrown when the class of a
  31  * parser factory specified in the system properties cannot be found
  32  * or instantiated.
  33  *
  34  * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
  35  * @since 1.4
  36  */
  37 
  38 public class FactoryConfigurationError extends Error {
  39     private static final long serialVersionUID = -827108682472263355L;
  40 
  41     /**
  42      *<code>Exception</code> that represents the error.
  43      */
  44     private Exception exception;
  45 
  46     /**
  47      * Create a new <code>FactoryConfigurationError</code> with no
  48      * detail message.
  49      */
  50 
  51     public FactoryConfigurationError() {
  52         super();
  53         this.exception = null;
  54     }




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.parsers;
  27 
  28 /**
  29  * Thrown when a problem with configuration with the Parser Factories
  30  * exists. This error will typically be thrown when the class of a
  31  * parser factory specified in the system properties cannot be found
  32  * or instantiated.
  33  *
  34  * @author Jeff Suttor
  35  * @since 1.4
  36  */
  37 
  38 public class FactoryConfigurationError extends Error {
  39     private static final long serialVersionUID = -827108682472263355L;
  40 
  41     /**
  42      *<code>Exception</code> that represents the error.
  43      */
  44     private Exception exception;
  45 
  46     /**
  47      * Create a new <code>FactoryConfigurationError</code> with no
  48      * detail message.
  49      */
  50 
  51     public FactoryConfigurationError() {
  52         super();
  53         this.exception = null;
  54     }


< prev index next >