commonMain.com.darkrockstudios.symspellkt.exception.SpellCheckException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SymSpellKt-jvm Show documentation
Show all versions of SymSpellKt-jvm Show documentation
A Kotlin Multiplatform implementation of the SymSpell Spell Checking algorithm.
package com.darkrockstudios.symspellkt.exception
/**
* Exception for Spellcheck
* @param message
* @param cause
* @param code
*/
class SpellCheckException(
val spellCheckExceptionCode: SpellCheckExceptionCode,
val customMessage: String? = null,
cause: Throwable? = null,
) : Exception(customMessage ?: "", cause)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy