ErrnoException 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
ErrnoException(String, Int32) |
Constructs an instance with the given function name and errno value. |
ErrnoException(String, Int32, Throwable) |
Constructs an instance with the given function name, errno value, and cause. |
ErrnoException(String, Int32)
Constructs an instance with the given function name and errno value.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;I)V", "")]
public ErrnoException (string? functionName, int errno);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;I)V", "")>]
new Android.Systems.ErrnoException : string * int -> Android.Systems.ErrnoException
Parameters
- functionName
- String
- errno
- Int32
- Attributes
Remarks
Constructs an instance with the given function name and errno value.
Java documentation for android.system.ErrnoException.ErrnoException(java.lang.String, int)
.
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
ErrnoException(String, Int32, Throwable)
Constructs an instance with the given function name, errno value, and cause.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;ILjava/lang/Throwable;)V", "")]
public ErrnoException (string? functionName, int errno, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;ILjava/lang/Throwable;)V", "")>]
new Android.Systems.ErrnoException : string * int * Java.Lang.Throwable -> Android.Systems.ErrnoException
Parameters
- functionName
- String
- errno
- Int32
- cause
- Throwable
- Attributes
Remarks
Constructs an instance with the given function name, errno value, and cause.
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.