Google is committed to advancing racial equity for Black communities. See how.
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

Constructs an ArithmeticException with no detail message.

Constructs an ArithmeticException with the specified detail message.

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.