public class FactoryConfigurationError extends Error
An error class for reporting factory configuration errors.
public FactoryConfigurationError()
Default constructor
public FactoryConfigurationError(Exception e)
Construct an exception with a nested inner exception
e
- the exception to nestpublic FactoryConfigurationError(Exception e, String msg)
Construct an exception with a nested inner exception and a message
e
- the exception to nestmsg
- the message to reportpublic FactoryConfigurationError(String msg, Exception e)
Construct an exception with a nested inner exception and a message
msg
- the message to reporte
- the exception to nestpublic FactoryConfigurationError(String msg)
Construct an exception with associated message
msg
- the message to reportpublic Exception getException()
Return the nested exception (if any)
public Throwable getCause()
use the exception chaining mechanism of JDK1.4
getCause
in class Throwable
null
if the cause is nonexistent or unknown.public String getMessage()
Report the message associated with this error
getMessage
in class Throwable
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.