IndexesNotSupportedException.java
/*
* $RCSfile: IndexesNotSupportedException.java,v $
* $Id: IndexesNotSupportedException.java,v 1.6 1998/11/30 02:21:07 devnull Exp $
* by Lee Wilson, http://www.ad1440.net/~devnull
* Development started on 1998 10 01
* (c) Devnull Software, LLC. (http://www.devnullsoftware.com)
*/
package com.devnullsoftware.objlist;
/**
* An exception thrown when a search is tried on an object stored in an Objlist
* that does not have any secondary indices.
*
* @author Lee Wilson
* @version 1.0
*/
class IndexesNotSupportedException extends Exception {
public IndexesNotSupportedException () {}
public IndexesNotSupportedException (String gripe) {
super(gripe);
}
}