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

Go to download

Multi-platform library for representing and manipulating Binary Decision Diagrams

There is a newer version: 1.0.4
Show newest version
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