LimitExceededException
open class LimitExceededException : IllegalStateException
| kotlin.Any | |||||
| ↳ | kotlin.Throwable | ||||
| ↳ | java.lang.Exception | ||||
| ↳ | java.lang.RuntimeException | ||||
| ↳ | java.lang.IllegalStateException | ||||
| ↳ | android.os.LimitExceededException | ||||
Indicates that the app has exceeded a limit set by the System.
Summary
| Public constructors | |
|---|---|
| Constructs a new  | |
| LimitExceededException(message: String)Constructs a new  | |
Public constructors
LimitExceededException
LimitExceededException()
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.
LimitExceededException
LimitExceededException(message: String)
Constructs a new LimitExceededException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.
| Parameters | |
|---|---|
| message | String: the detail message which is saved for later retrieval by the getMessage()method. This value cannot benull. | 
