Project

General

Profile

1
// NoXMLParserException.java - Attempt to parse XML Catalog with no Parser
2
// Written by Norman Walsh, nwalsh@arbortext.com
3
// NO WARRANTY! This class is in the public domain.
4
package com.arbortext.catalog;
5

    
6
/**
7
 * <p>Signal attempt to parse an XML Catalog without a Parser class.</p>
8
 *
9
 * <blockquote>
10
 * <em>This module, both source code and documentation, is in the
11
 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
12
 * </blockquote>
13
 *
14
 * <p>This exception is thrown if an attempt is made to load an XML
15
 * Catalog, but no Parser class has been provided.</p>
16
 *
17
 * @see XMLCatalogReader
18
 * @see XMLCatalogReader#setParserClass
19
 */
20
public class NoXMLParserException extends Exception {
21
    public NoXMLParserException() { super(); }
22
}
(7-7/11)