ij.macro.ReturnException 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 exceptions is thrown when return is invoked in a user-defined function. */
class ReturnException extends RuntimeException {
double value;
String str;
Variable[] array;
int arraySize;
ReturnException() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy