/***************************************
* *
* JBoss: The OpenSource J2EE WebOS *
* *
* Distributable under LGPL license. *
* See terms of license at gnu.org. *
* *
***************************************/
package org.jboss.util;
/**
* An exception throw to indicate a problem with some type of data conversion.
*
* @version $Revision: 1.1 $
* @author Jason Dillon
*/
public class DataConversionException
extends NestedRuntimeException
{
/**
* Construct a DataConversionException with a specified detail message.
*
* @param msg Detail message
*/
public DataConversionException(final String msg) {
super(msg);
}
/**
* Construct a DataConversionException with a specified detail Throwable
* and message.
*
* @param msg Detail message
* @param detail Detail Throwable
*/
public DataConversionException(final String msg, final Throwable detail) {
super(msg, detail);
}
/**
* Construct a DataConversionException with a specified detail Throwable.
*
* @param detail Detail Throwable
*/
public DataConversionException(final Throwable detail) {
super(detail);
}
/**
* Construct a DataConversionException with no specified detail message.
*/
public DataConversionException() {
super();
}
}