commonMain.it.unibo.tuprolog.bdd.exception.BinaryDecisionDiagramException.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
*
* @param message the detail message string.
* @param cause the cause of this exception.
*/
open class BinaryDecisionDiagramException @JvmOverloads constructor(
override val message: String? = null,
override val cause: Throwable? = null
) : RuntimeException(message, cause)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy