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

com.malinskiy.marathon.config.exceptions.ConfigurationException.kt Maven / Gradle / Ivy

package com.malinskiy.marathon.config.exceptions

class ConfigurationException : RuntimeException {
    constructor(cause: Throwable) : super(cause)
    constructor(message: String) : super(message)
    constructor(message: String, cause: Throwable) : super(message, cause)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy