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

io.api.bloxy.error.BloxyException.kt Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package io.api.bloxy.error


/**
 * Bloxy Server Error
 *
 * @author GoodforGod
 * @since 17.11.2018
 */
open class BloxyException : RuntimeException {
    constructor(message: String?) : super(message)
    constructor(message: String?, cause: Throwable?) : super(message, cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy