/***************************************
* *
* JBoss: The OpenSource J2EE WebOS *
* *
* Distributable under LGPL license. *
* See terms of license at gnu.org. *
* *
***************************************/
package org.jboss.util;
/**
* Thrown to indicate that section of code that should never have been
* reachable, has just been reached.
*
* @version $Revision: 1.1 $
* @author Jason Dillon
*/
public class UnreachableStatementException
extends RuntimeException
{
/**
* Construct a UnreachableStatementException with a detail message.
*
* @param msg Detail message.
*/
public UnreachableStatementException(final String msg) {
super(msg);
}
/**
* Construct a UnreachableStatementException with no detail.
*/
public UnreachableStatementException() {
super();
}
}