Parses a TLD from the given resource path string. @param resourcePath the resource path @throws IOException if an I/O error occurs @throws SAXException if a parsing error occurs
(String resourcePath)
| 259 | * @throws SAXException if a parsing error occurs |
| 260 | */ |
| 261 | protected void parseTld(String resourcePath) throws IOException, SAXException { |
| 262 | TldResourcePath tldResourcePath = new TldResourcePath(context.getResource(resourcePath), resourcePath); |
| 263 | parseTld(tldResourcePath); |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Parses a TLD from the given resource path. |
no test coverage detected