1 32 33 package it.businesslogic.ireport; 34 35 39 public class IRParsingException extends Exception { 40 41 String chunk = null; 42 43 public IRParsingException(String msg, String chunk) { 44 super(msg); 45 this.chunk = chunk; 46 } 47 48 public IRParsingException(String msg) { 49 this(msg,null); 50 } 51 52 public String getChunk() 53 { 54 return chunk; 55 } 56 57 public void setChunk(String c) 58 { 59 this.chunk = c; 60 } 61 62 } 63 | Popular Tags |