All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.soywiz.kbignum.BigIntException.kt Maven / Gradle / Ivy

There is a newer version: 4.0.10
Show newest version
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)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy