File: FlatException.java

package info (click to toggle)
rjava 1.0-14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,188 kB
  • sloc: java: 13,223; ansic: 5,503; sh: 3,776; xml: 325; makefile: 250; perl: 33
file content (9 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9

/**
 * Generated when one attemps to flatten an array that is not rectangular
 */
public class FlatException extends Exception{
	public FlatException(){
		super( "Can only flatten rectangular arrays" ); 
	}
}