1 26 27 package it.stefanochizzolini.clown.tokens; 28 29 32 public class FileFormatException 33 extends Exception  34 { 35 private long position; 39 41 public FileFormatException( 43 String message, 44 long position 45 ) 46 { 47 super(message); 48 49 this.position = position; 50 } 51 52 public FileFormatException( 53 String message, 54 Throwable cause, 55 long position 56 ) 57 { 58 super(message,cause); 59 60 this.position = position; 61 } 62 64 69 public long getPosition( 70 ) 71 {return position;} 72 } | Popular Tags |