FactoryConfigurationError Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| FactoryConfigurationError() |
Create a new <code>FactoryConfigurationError</code> with no detail message. |
| FactoryConfigurationError(Exception) |
Create a new <code>FactoryConfigurationError</code> with a given <code>Exception</code> base cause of the error. |
| FactoryConfigurationError(String) |
Create a new <code>FactoryConfigurationError</code> with the <code>String </code> specified as an error message. |
| FactoryConfigurationError(Exception, String) |
Create a new <code>FactoryConfigurationError</code> with the given <code>Exception</code> base cause and detail message. |
| FactoryConfigurationError(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
FactoryConfigurationError()
Create a new <code>FactoryConfigurationError</code> with no detail message.
[Android.Runtime.Register(".ctor", "()V", "")]
public FactoryConfigurationError ();
- Attributes
Remarks
Java documentation for javax.xml.parsers.FactoryConfigurationError.FactoryConfigurationError().
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FactoryConfigurationError(Exception)
Create a new <code>FactoryConfigurationError</code> with a given <code>Exception</code> base cause of the error.
[Android.Runtime.Register(".ctor", "(Ljava/lang/Exception;)V", "")]
public FactoryConfigurationError (Java.Lang.Exception? e);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Exception;)V", "")>]
new Javax.Xml.Parsers.FactoryConfigurationError : Java.Lang.Exception -> Javax.Xml.Parsers.FactoryConfigurationError
Parameters
The exception to be encapsulated in a FactoryConfigurationError.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FactoryConfigurationError(String)
Create a new <code>FactoryConfigurationError</code> with the <code>String </code> specified as an error message.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public FactoryConfigurationError (string? msg);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Javax.Xml.Parsers.FactoryConfigurationError : string -> Javax.Xml.Parsers.FactoryConfigurationError
Parameters
- msg
- String
The error message for the exception.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FactoryConfigurationError(Exception, String)
Create a new <code>FactoryConfigurationError</code> with the given <code>Exception</code> base cause and detail message.
[Android.Runtime.Register(".ctor", "(Ljava/lang/Exception;Ljava/lang/String;)V", "")]
public FactoryConfigurationError (Java.Lang.Exception? e, string? msg);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Exception;Ljava/lang/String;)V", "")>]
new Javax.Xml.Parsers.FactoryConfigurationError : Java.Lang.Exception * string -> Javax.Xml.Parsers.FactoryConfigurationError
Parameters
The exception to be encapsulated in a FactoryConfigurationError
- msg
- String
The detail message.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FactoryConfigurationError(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected FactoryConfigurationError (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Javax.Xml.Parsers.FactoryConfigurationError : nativeint * Android.Runtime.JniHandleOwnership -> Javax.Xml.Parsers.FactoryConfigurationError
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.