// InvalidCatalogEntryException.java - Bad Catalog entry type // Written by Norman Walsh, nwalsh@arbortext.com // NO WARRANTY! This class is in the public domain. package com.arbortext.catalog; /** *

Signal bad Catalog entry

* *
* 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 create * a CatalogEntry instance with the wrong number of arguments or * an obviously erroneous argument.

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