IkeInternalException 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
IkeInternalException(Throwable) |
Constructs a new exception with the specified cause. |
IkeInternalException(String, Throwable) |
Constructs a new exception with the specified cause. |
IkeInternalException(Throwable)
Constructs a new exception with the specified cause.
[Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "", ApiSince=31)]
public IkeInternalException (Java.Lang.Throwable cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "", ApiSince=31)>]
new Android.Net.IpSec.Ike.Exceptions.IkeInternalException : Java.Lang.Throwable -> Android.Net.IpSec.Ike.Exceptions.IkeInternalException
Parameters
- cause
- Throwable
the cause (which is saved for later retrieval by the #getCause()
method).
- Attributes
Remarks
Constructs a new exception with the specified cause.
Except for testing, IKE library users normally do not instantiate this object themselves but instead get a reference via IkeSessionCallback
or ChildSessionCallback
.
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
IkeInternalException(String, Throwable)
Constructs a new exception with the specified cause.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=31)]
public IkeInternalException (string message, Java.Lang.Throwable cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=31)>]
new Android.Net.IpSec.Ike.Exceptions.IkeInternalException : string * Java.Lang.Throwable -> Android.Net.IpSec.Ike.Exceptions.IkeInternalException
Parameters
- message
- String
the descriptive message (which is saved for later retrieval by the #getMessage()
method).
- cause
- Throwable
the cause (which is saved for later retrieval by the #getCause()
method).
- Attributes
Remarks
Constructs a new exception with the specified cause.
Except for testing, IKE library users normally do not instantiate this object themselves but instead get a reference via IkeSessionCallback
or ChildSessionCallback
.
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.