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

commands.BakuCommandFailure.kt Maven / Gradle / Ivy

package com.github.fluidsonic.baku


class BakuCommandFailure(
	val code: String,
	val userMessage: String,
	val developerMessage: String = userMessage,
	cause: Throwable? = null
) : Exception(developerMessage, cause) {

	companion object {

		const val genericUserMessage = "Looks like we're having some trouble right now.\nPlease try again soon."
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy