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

walkmc.extensions.Errors.kt Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
@file:Suppress("NOTHING_TO_INLINE")

package walkmc.extensions

/**
 * Throws a [IndexOutOfBoundsException] with the given message.
 */
inline fun indexError(message: String): Nothing = throw IndexOutOfBoundsException(message)

/**
 * Throws a [NoSuchElementException] with the given message.
 */
inline fun noElementError(message: String): Nothing = throw NoSuchElementException(message)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy