File: MacroException.java

package info (click to toggle)
imagej 1.54g-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,520 kB
  • sloc: java: 132,209; sh: 286; xml: 255; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
	}
	
}