StringConcatException 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
StringConcatException(String) |
Constructs an exception with a message |
StringConcatException(IntPtr, JniHandleOwnership) | |
StringConcatException(String, Throwable) |
Constructs an exception with a message and a linked throwable |
StringConcatException(String)
Constructs an exception with a message
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=36)]
public StringConcatException(string? msg);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=36)>]
new Java.Lang.Invoke.StringConcatException : string -> Java.Lang.Invoke.StringConcatException
Parameters
- msg
- String
exception message
- Attributes
Remarks
Constructs an exception with a message
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
StringConcatException(IntPtr, JniHandleOwnership)
protected StringConcatException(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Lang.Invoke.StringConcatException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Lang.Invoke.StringConcatException
Parameters
- javaReference
-
IntPtr
nativeint
- transfer
- JniHandleOwnership
Applies to
StringConcatException(String, Throwable)
Constructs an exception with a message and a linked throwable
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=36)]
public StringConcatException(string? msg, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=36)>]
new Java.Lang.Invoke.StringConcatException : string * Java.Lang.Throwable -> Java.Lang.Invoke.StringConcatException
Parameters
- msg
- String
exception message
- cause
- Throwable
throwable cause
- Attributes
Remarks
Constructs an exception with a message and a linked throwable
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.