io.github.serpro69.semverkt.spec.IllegalVersionException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semver.kt-spec Show documentation
Show all versions of semver.kt-spec Show documentation
https://github.com/serpro69/semver.kt
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)
}