Lingua

LimitExceededException Constructors

Definition

Overloads

Name Description
LimitExceededException()

Constructs a new LimitExceededException with null as its detail message.

LimitExceededException(String)

Constructs a new LimitExceededException with the specified detail message.

LimitExceededException(IntPtr, JniHandleOwnership)

Initializes a new instance of the LimitExceededException class.

LimitExceededException()

Constructs a new LimitExceededException with null as its detail message.

[Android.Runtime.Register(".ctor", "()V", "", ApiSince=30)]
public LimitExceededException();
Attributes

Remarks

Constructs a new LimitExceededException with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to #initCause.

Java documentation for android.os.LimitExceededException.LimitExceededException().

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

LimitExceededException(String)

Constructs a new LimitExceededException with the specified detail message.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=30)]
public LimitExceededException(string message);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=30)>]
new Android.OS.LimitExceededException : string -> Android.OS.LimitExceededException

Parameters

message
String

the detail message which is saved for later retrieval by the #getMessage() method.

Attributes

Remarks

Constructs a new LimitExceededException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to #initCause.

Java documentation for android.os.LimitExceededException.LimitExceededException(java.lang.String).

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

LimitExceededException(IntPtr, JniHandleOwnership)

Initializes a new instance of the LimitExceededException class.

protected LimitExceededException(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.OS.LimitExceededException : nativeint * Android.Runtime.JniHandleOwnership -> Android.OS.LimitExceededException

Parameters

javaReference
IntPtr

nativeint

A IntPtr containing a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnership indicating how to handle javaReference.

Applies to