1 28 package net.sf.jasperreports.engine; 29 30 31 32 36 public class JRScriptletException extends JRException 37 { 38 39 40 43 public JRScriptletException(String message) 44 { 45 super(message); 46 } 47 48 49 52 public JRScriptletException(Exception e) 53 { 54 super(e); 55 } 56 57 58 61 public JRScriptletException(String message, Exception e) 62 { 63 super(message, e); 64 } 65 66 67 } 68 | Popular Tags |