Most visited

Recently visited

Added in API level 1

ParserConfigurationException

public class ParserConfigurationException
extends Exception

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ javax.xml.parsers.ParserConfigurationException


Indicates a serious configuration error.

Summary

Public constructors

ParserConfigurationException()

Create a new ParserConfigurationException with no detail message.

ParserConfigurationException(String msg)

Create a new ParserConfigurationException with the String specified as an error message.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

ParserConfigurationException

Added in API level 1
ParserConfigurationException ()

Create a new ParserConfigurationException with no detail message.

ParserConfigurationException

Added in API level 1
ParserConfigurationException (String msg)

Create a new ParserConfigurationException with the String specified as an error message.

Parameters
msg String: The error message for the exception.

Hooray!