Exemplo n.º 1
0
 public ParseException(int id, ARPLocation where, Exception e) 
     :base(e.Message, where.inputName, null, where.endLine, where.endColumn,e){
     if (getCause()==null)
         initCause(e);
     this.id = id;
 }
Exemplo n.º 2
0
 protected ParseException(int id, ARPLocation where, String msg) 
     :base(msg, where.inputName, null, where.endLine, where.endColumn){
     this.id = id;
     
 }