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 Throwable#Throwable(String,.
Summary
Public constructors |
|
|---|---|
<init>()Constructs an |
|
|
Constructs an |
|
Public constructors
<init>
Added in API level 1
ArithmeticException()
Constructs an ArithmeticException with no detail message.
<init>
Added in API level 1
ArithmeticException(s: String!)
Constructs an ArithmeticException with the specified detail message.
| Parameters | |
|---|---|
s |
String!: the detail message. |