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

com.giraone.imaging.FormatNotSupportedException Maven / Gradle / Ivy

Go to download

Utility JAR for imaging routines, e.g. thumbnail creation for PDF and bitmaps

There is a newer version: 1.2.0
Show newest version
package com.giraone.imaging;

// ---------------------------------------------------------------------------

/**
 * Exception to indicate an unsupported format
 */
public class FormatNotSupportedException extends Exception {

    private static final long serialVersionUID = 1L;

    public FormatNotSupportedException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy