fop-marcos

Collection of macros to to help during the FOP exam.
git clone git://git.oshgnacknak.de/fop-marcos.git
Log | Files | Refs | README

exception (95B)


      1 public class MyException extends Exception {
      2 	public MyException(int n) {
      3 		super(n+"!");
      4 	}
      5 }