/***************************************
* *
* JBoss: The OpenSource J2EE WebOS *
* *
* Distributable under LGPL license. *
* See terms of license at gnu.org. *
* *
***************************************/
package org.jboss.util.collection;
/**
* Thrown to indicate that an operation can not be performed on a full
* collection.
*
* @version $Revision: 1.1 $
* @author Jason Dillon
*/
public class FullCollectionException
extends CollectionException
{
/**
* Construct a FullCollectionException with the specified
* detail message.
*
* @param msg Detail message.
*/
public FullCollectionException(String msg) {
super(msg);
}
/**
* Construct a FullCollectionException with no detail.
*/
public FullCollectionException() {
super();
}
}