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

ij.macro.ReturnException Maven / Gradle / Ivy

Go to download

ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.

There is a newer version: 1.54m
Show newest version
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