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

io.github.serpro69.semverkt.spec.IllegalVersionException.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("unused")

package io.github.serpro69.semverkt.spec

class IllegalVersionException : Throwable {

    constructor(message: String) : super(message)

    constructor(cause: Throwable) : super(cause)

    constructor(message: String, cause: Throwable) : super(message, cause)

    constructor(
        message: String,
        cause: Throwable,
        enableSuppression: Boolean,
        writableStackTrace: Boolean
    ) : super(message, cause, enableSuppression, writableStackTrace)
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy