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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy