Project

General

Profile

1
// NotXMLCatalogException.java - Not an XML catalog
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 a non-XML Catalog with an XML Parser.</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 and it appears not to be XML.</p>
16
 */
17
public class NotXMLCatalogException extends Exception {
18
    public NotXMLCatalogException() { super(); }
19
}
(8-8/11)