org.dvb.ui.DVBRasterFormatException Maven / Gradle / Ivy
package org.dvb.ui;
/**
* This exception is thrown for some invalid operations on instances of
* DVBBufferedImage
. The precise conditions are defined in the places
* where this exception is thrown.
*
* @see org.dvb.ui.DVBBufferedImage
* @since MHP 1.0.1
*/
public class DVBRasterFormatException extends java.lang.Exception {
/**
* Constructs an instance of DVBRasterFormatException
* with the specified detail message.
* @param s the detail message
* @since MHP1.0
*/
public DVBRasterFormatException(String s) {
super (s);
}
}