Constructor. @param ctxt The compilation context @param fname The file name @param encoding The file encoding @param jar ? @param err The error dispatcher @throws JasperException If a Jasper-internal error occurs @throws FileNotFoundException If the JSP file is not found (or
(JspCompilationContext ctxt, String fname, String encoding, Jar jar, ErrorDispatcher err)
| 68 | * @throws IOException If an IO-level error occurs, e.g. reading the file |
| 69 | */ |
| 70 | JspReader(JspCompilationContext ctxt, String fname, String encoding, Jar jar, ErrorDispatcher err) |
| 71 | throws JasperException, FileNotFoundException, IOException { |
| 72 | |
| 73 | this(ctxt, fname, JspUtil.getReader(fname, encoding, jar, ctxt, err), err); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Constructor: same as above constructor but with initialized reader to the file given. |
nothing calls this directly
no test coverage detected