/***************************************
* *
* JBoss: The OpenSource J2EE WebOS *
* *
* Distributable under LGPL license. *
* See terms of license at gnu.org. *
* *
***************************************/
package org.jboss.util.collection;
/**
* A generic collection exception.
*
* @version $Revision: 1.1 $
* @author Jason Dillon
*/
public class CollectionException
extends RuntimeException
{
/**
* Construct a CollectionException with the specified
* detail message.
*
* @param msg Detail message.
*/
public CollectionException(String msg) {
super(msg);
}
/**
* Construct a CollectionException with no detail.
*/
public CollectionException() {
super();
}
}