commonMain.it.unibo.tuprolog.bdd.exception.BinaryDecisionDiagramOperationException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bdd-jvm Show documentation
Show all versions of bdd-jvm Show documentation
Multi-platform library for representing and manipulating Binary Decision Diagrams
package it.unibo.tuprolog.bdd.exception
import kotlin.jvm.JvmOverloads
/**
* Base class for all exceptions related to Binary Decision Diagrams operations
*
* @param message the detail message string.
* @param cause the cause of this exception.
*/
class BinaryDecisionDiagramOperationException @JvmOverloads constructor(
message: String?,
cause: Throwable? = null
) : BinaryDecisionDiagramException(message, cause)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy