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

commonMain.ag.granular.tiff.util.TiffException.kt Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package ag.granular.tiff.util

/**
 * TIFF exception
 */
class TiffException : RuntimeException {

    constructor(message: String) : super(message)
    constructor(message: String, throwable: Throwable) : super(message, throwable)
    constructor(throwable: Throwable) : super(throwable)

    companion object {

        /**
         * Serial version id
         */
        private const val serialVersionUID = 1L
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy