Added in API level 1
ArithmeticException
open class ArithmeticException : RuntimeException
kotlin.Any | ||||
↳ | kotlin.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.lang.RuntimeException | |||
↳ | java.lang.ArithmeticException |
Thrown when an exceptional arithmetic condition has occurred. For example, an integer "divide by zero" throws an instance of this class. ArithmeticException
objects may be constructed by the virtual machine as if stack trace was not writable.
Summary
Public constructors | |
---|---|
Constructs an |
|
Constructs an |
Public constructors
ArithmeticException
Added in API level 1
ArithmeticException()
Constructs an ArithmeticException
with no detail message.
ArithmeticException
Added in API level 1
ArithmeticException(s: String!)
Constructs an ArithmeticException
with the specified detail message.
Parameters | |
---|---|
s |
String!: the detail message. |