// NotXMLCatalogException.java - Not an XML catalog // Written by Norman Walsh, nwalsh@arbortext.com // NO WARRANTY! This class is in the public domain. package com.arbortext.catalog; /** *

Signal attempt to parse a non-XML Catalog with an XML Parser.

* *
* This module, both source code and documentation, is in the * Public Domain, and comes with NO WARRANTY. *
* *

This exception is thrown if an attempt is made to load an XML * Catalog and it appears not to be XML.

*/ public class NotXMLCatalogException extends Exception { public NotXMLCatalogException() { super(); } }