com.anaplan.engineering.vdmanimation.api.VdmAnimationException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vdm-animation-api Show documentation
Show all versions of vdm-animation-api Show documentation
A service API for animating VDM specifications
package com.anaplan.engineering.vdmanimation.api
sealed class VdmAnimationException(e: Exception) : RuntimeException(e)
class VdmPreconditionFailure(e: Exception) : VdmAnimationException(e)
class VdmPostconditionFailure(e: Exception) : VdmAnimationException(e)
class VdmInvariantFailure(e: Exception) : VdmAnimationException(e)
class VdmDeclarationFailure(e: Exception) : VdmAnimationException(e)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy