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

commonMain.com.darkrockstudios.symspellkt.exception.SpellCheckException.kt Maven / Gradle / Ivy

Go to download

A Kotlin Multiplatform implementation of the SymSpell Spell Checking algorithm.

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