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

ij.macro.MacroException 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 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