/*
* HashTableFullException.java 1.0 Michael Zanussi
*
* Copyright (C) 2004 Michael Zanussi
*
* Permission to use, copy, modify, and distribute this software
* and its documentation for NON-COMMERCIAL purposes and without
* fee is hereby granted provided that this copyright notice
* appears in all copies.
*/
package com.michaelzanussi.bayesian;
/**
* Thrown by methods in the <code>MondoHashTable</code> class to
* indicate that the hash table is full.
*
* @author <a href="mailto:admin@michaelzanussi.com">Michael Zanussi</a>
* @version 1.0 (6 Feb 2004)
*/
public class HashTableFullException extends RuntimeException {
/**
* Default constructor.
*/
public HashTableFullException( String error ) {
super( error );
}
}
|