commonMain.com.soywiz.kbignum.BigIntException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kbignum-tvossimulatorarm64 Show documentation
Show all versions of kbignum-tvossimulatorarm64 Show documentation
Big Integers and decimals in Kotlin Common
package com.soywiz.kbignum
open class BigIntException(message: String) : Throwable(message)
open class BigIntInvalidFormatException(message: String) : BigIntException(message)
open class BigIntDivisionByZeroException(message: String) : BigIntException(message)
open class BigIntOverflowException(message: String) : BigIntException(message)
open class BigIntInvalidOperationException(message: String) : BigIntException(message)