/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.m16e.tools;
/**
*
* @author carlos
*/
public class MpRuntimeException
extends RuntimeException
{
////////////////////////////////////////////////////////////
/**
* Creates a new instance of <code>MpRuntimeException</code> without detail message.
*/
public MpRuntimeException()
{
}
////////////////////////////////////////////////////////////
/**
* Constructs an instance of <code>MpRuntimeException</code> with the specified detail message.
* @param msg the detail message.
*/
public MpRuntimeException( String msg )
{
super( msg );
}
////////////////////////////////////////////////////////////
/**
* Constructs an instance of <code>MpRuntimeException</code> with the specified detail message.
* @param msg the detail message.
*/
public MpRuntimeException( Throwable t )
{
super( t );
}
////////////////////////////////////////////////////////////
/**
* Constructs an instance of <code>MpRuntimeException</code> with the specified detail message.
* @param msg the detail message.
*/
public MpRuntimeException( String msg, Throwable t )
{
super( msg, t );
}
}
|