Creates an instance. A warning is logged if an exception is thrown while parsing the XML content (for instance when the content is not a valid XML and can't be parsed). @param webResponse the response from the server @param enclosingWindow the window that holds the page @throws IOException if the p
(final WebResponse webResponse, final WebWindow enclosingWindow)
| 66 | * @throws IOException if the page could not be created |
| 67 | */ |
| 68 | public XmlPage(final WebResponse webResponse, final WebWindow enclosingWindow) throws IOException { |
| 69 | this(webResponse, enclosingWindow, true); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Creates an instance. |
nothing calls this directly
no test coverage detected