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

dev.fuelyour.vertxkuickstartcore.exceptions.VertxKuickstartException.kt Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy