io.github.mianalysis.mia.module.inputoutput.FrameOutOfRangeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mia-modules Show documentation
Show all versions of mia-modules Show documentation
ModularImageAnalysis (MIA) is an ImageJ plugin which provides a modular framework for assembling image and object analysis workflows. Detected objects can be transformed, filtered, measured and related. Analysis workflows are batch-enabled by default, allowing easy processing of high-content datasets.
package io.github.mianalysis.mia.module.inputoutput;
public class FrameOutOfRangeException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -5409076953209909970L;
public FrameOutOfRangeException() {
}
public FrameOutOfRangeException(String message) {
super(message);
}
public FrameOutOfRangeException(String message, Throwable cause) {
super(message, cause);
}
public FrameOutOfRangeException(Throwable cause) {
super(cause);
}
public FrameOutOfRangeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}