/*************************************** * * * 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 an empty * collection. * * @version $Revision: 1.1 $ * @author Jason Dillon */ public class EmptyCollectionException extends CollectionException { /** * Construct a EmptyCollectionException with the specified * detail message. * * @param msg Detail message. */ public EmptyCollectionException(String msg) { super(msg); } /** * Construct a EmptyCollectionException with no detail. */ public EmptyCollectionException() { super(); } }