/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.util.property; import org.jboss.util.NestedRuntimeException; /** * This exception is thrown to indicate a non-fatal problem with the * property system. * * @version $Revision: 1.1 $ * @author Jason Dillon */ public class PropertyException extends NestedRuntimeException { /** * Construct a PropertyException with the specified detail * message. * * @param msg Detail message. */ public PropertyException(String msg) { super(msg); } /** * Construct a PropertyException with the specified detail * message and nested Throwable. * * @param msg Detail message. * @param nested Nested Throwable. */ public PropertyException(String msg, Throwable nested) { super(msg, nested); } /** * Construct a PropertyException with the specified * nested Throwable. * * @param nested Nested Throwable. */ public PropertyException(Throwable nested) { super(nested); } /** * Construct a PropertyException with no detail. */ public PropertyException() { super(); } }