application.ContractExceptionReport.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of specmatic-executable Show documentation
Show all versions of specmatic-executable Show documentation
Command-line standalone executable jar for Specmatic
package application
import `in`.specmatic.core.pattern.ContractException
class ContractExceptionReport(private val e: ContractException) : CompatibilityReport {
override fun message(): String {
return e.report()
}
override val exitCode: Int = 1
}