commonMain.ag.granular.tiff.util.TiffException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiffany-jvm Show documentation
Show all versions of tiffany-jvm Show documentation
A library for parsing Tagged Image File Format (Tiff) files
The 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
}
}