/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.util; /** * Thrown to indicate that a string was empty (aka. "") * where it must not be. * * @version $Revision: 1.1 $ * @author Jason Dillon */ public class EmptyStringException extends IllegalArgumentException { /** * Construct a EmptyStringException. * * @param msg Exception message. */ public EmptyStringException(final String msg) { super(msg); } /** * Construct a EmptyStringException. */ public EmptyStringException() { super(); } }