Project

General

Profile

1
// InvalidCatalogEntryException.java - Bad Catalog entry type
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 bad Catalog entry type</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 create
15
 * a CatalogEntry instance using an invalid entry type.</p>
16
 */
17
public class InvalidCatalogEntryTypeException extends Exception {
18
    public InvalidCatalogEntryTypeException() { super(); }
19
}
(6-6/11)