MpRuntimeException.java :  » ERP-CRM-Financial » Evaristo-4.0 » com » m16e » tools » Java Open Source

Java Open Source » ERP CRM Financial » Evaristo 4.0 
Evaristo 4.0 » com » m16e » tools » MpRuntimeException.java
/*
 * 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 );
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.