dev.fuelyour.vertxkuickstartcore.exceptions.VertxKuickstartException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-kuickstart-core Show documentation
Show all versions of vertx-kuickstart-core Show documentation
Core libraries used by microservices created from the vertx-kuickstart template
package dev.fuelyour.vertxkuickstartcore.exceptions
import java.lang.RuntimeException
/**
* Base exception for vertx-quickstart-core libraries to inform users of the core libraries of misuse of the core
* libraries.
*/
class VertxKuickstartException : RuntimeException {
override val message: String
get() = super.message ?: ""
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
}