Project

General

Profile

1
// UnknownCatalogFormatException.java - Unknown XML Catalog format
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 unknown XML Catalog format.</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 XML Catalog is loaded and the
15
 * root element of the catalog file is unrecognized.</p>
16
 */
17
public class UnknownCatalogFormatException extends Exception {
18
    public UnknownCatalogFormatException() { super(); }
19
}
(9-9/11)