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</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 with the wrong number of arguments or
16
 * an obviously erroneous argument.</p>
17
 */
18
public class InvalidCatalogEntryException extends Exception {
19
    public InvalidCatalogEntryException() { super(); }
20
}
21

    
(5-5/11)