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

application.CompatibleReport.kt Maven / Gradle / Ivy

There is a newer version: 1.3.39
Show newest version
package application

class CompatibleReport(private val msg: String = "The newer contract is backward compatible."): CompatibilityReport {
    override fun message(): String {
        return msg
    }

    override val exitCode: Int = 0
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy