walkmc.extensions.Errors.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of walk-server Show documentation
Show all versions of walk-server Show documentation
A spigot fork to kotlin structure and news.
@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