TransformerConfigurationException
open class TransformerConfigurationException : TransformerException
kotlin.Any | ||||
↳ | kotlin.Throwable | |||
↳ | java.lang.Exception | |||
↳ | javax.xml.transform.TransformerException | |||
↳ | javax.xml.transform.TransformerConfigurationException |
Indicates a serious configuration error.
Summary
Public constructors | |
---|---|
Create a new |
|
Create a new |
|
Create a new |
|
TransformerConfigurationException(msg: String!, e: Throwable!) Create a new |
|
TransformerConfigurationException(message: String!, locator: SourceLocator!) Create a new TransformerConfigurationException from a message and a Locator. |
|
TransformerConfigurationException(message: String!, locator: SourceLocator!, e: Throwable!) Wrap an existing exception in a TransformerConfigurationException. |
Inherited functions | |
---|---|
Inherited properties | |
---|---|
Public constructors
TransformerConfigurationException
TransformerConfigurationException()
Create a new TransformerConfigurationException
with no detail message.
TransformerConfigurationException
TransformerConfigurationException(msg: String!)
Create a new TransformerConfigurationException
with the String
specified as an error message.
Parameters | |
---|---|
msg |
String!: The error message for the exception. |
TransformerConfigurationException
TransformerConfigurationException(e: Throwable!)
Create a new TransformerConfigurationException
with a given Exception
base cause of the error.
Parameters | |
---|---|
e |
Throwable!: The exception to be encapsulated in a TransformerConfigurationException. |
TransformerConfigurationException
TransformerConfigurationException(
msg: String!,
e: Throwable!)
Create a new TransformerConfigurationException
with the given Exception
base cause and detail message.
Parameters | |
---|---|
e |
Throwable!: The exception to be encapsulated in a TransformerConfigurationException |
msg |
String!: The detail message. |
TransformerConfigurationException
TransformerConfigurationException(
message: String!,
locator: SourceLocator!)
Create a new TransformerConfigurationException from a message and a Locator.
This constructor is especially useful when an application is creating its own exception from within a DocumentHandler callback.
Parameters | |
---|---|
message |
String!: The error or warning message. |
locator |
SourceLocator!: The locator object for the error or warning. |
TransformerConfigurationException
TransformerConfigurationException(
message: String!,
locator: SourceLocator!,
e: Throwable!)
Wrap an existing exception in a TransformerConfigurationException.
Parameters | |
---|---|
message |
String!: The error or warning message, or null to use the message from the embedded exception. |
locator |
SourceLocator!: The locator object for the error or warning. |
e |
Throwable!: Any exception. |