/*************************************** * * * 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 method has not been implemented yet. * *
This exception is used to help stub out implementations. * * @version $Revision: 1.1 $ * @author Jason Dillon */ public class NotImplementedException extends RuntimeException { /** * Construct a NotImplementedException with a detail message. * * @param msg Detail message. */ public NotImplementedException(final String msg) { super(msg); } /** * Construct a NotImplementedException with no detail. */ public NotImplementedException() { super(); } }