ij.macro.MacroException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ij Show documentation
Show all versions of ij Show documentation
ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.
package ij.macro;
/** This runtime exception is thrown by break and continue statements. */
class MacroException extends RuntimeException {
private int type;
MacroException(int type) {
this.type = type;
}
int getType() {
return type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy