// UnknownCatalogFormatException.java - Unknown XML Catalog format // Written by Norman Walsh, nwalsh@arbortext.com // NO WARRANTY! This class is in the public domain. package com.arbortext.catalog; /** *
Signal unknown XML Catalog format.
* ** This module, both source code and documentation, is in the * Public Domain, and comes with NO WARRANTY. ** *
This exception is thrown if an XML Catalog is loaded and the * root element of the catalog file is unrecognized.
*/ public class UnknownCatalogFormatException extends Exception { public UnknownCatalogFormatException() { super(); } }