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

io.github.parzivalExe.guiApi.antlr.exceptions.XMLAttributeException.kt Maven / Gradle / Ivy

Go to download

With GuiAPI you can create Guis for your Bukkit/Spigot-Plugin in seconds while at the same time saving many lines of code

The newest version!
package io.github.parzivalExe.guiApi.antlr.exceptions

@Suppress("unused")
class XMLAttributeException(message: String?, cause: Throwable?) : XMLException(message, cause) {

    constructor() : this(null, null)

    constructor(message: String) : this(message, null)

    constructor(cause: Throwable) : this(null, cause)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy