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

commonMain.it.unibo.tuprolog.solve.library.exception.LibraryException.kt Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package it.unibo.tuprolog.solve.library.exception

import it.unibo.tuprolog.core.exception.TuPrologException

open class LibraryException(
    message: String? = null,
    cause: Throwable? = null,
) : TuPrologException(message, cause) {
    constructor(cause: Throwable?) : this(cause?.toString(), cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy