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

commonMain.it.unibo.tuprolog.bdd.exception.BinaryDecisionDiagramException.kt Maven / Gradle / Ivy

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