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

io.github.molumn.catrix.common.exceptions.CatrixIntentionalException.kt Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package io.github.molumn.catrix.common.exceptions

class CatrixIntentionalException : Exception {

    enum class Type {
        NONE,
        ILLEGAL_ACCESS,

    }

    private val type: Type

    constructor(type: Type = Type.NONE) : super("") {
        this.type = type
    }

    constructor(message: String = "", type: Type = Type.NONE) : super(message) {
        this.type = type
    }

    constructor(message: String, type: Type, cause: Throwable) : super(message, cause) {
        this.type = type
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy