/* JFox, the OpenSource J2EE Application Server
 *
 * Copyright (C) 2002 huihoo.com
 * Distributable under GNU LGPL license
 * See the GNU Lesser General Public License for more details.
 */

package org.jfox.mx;

/**
 * 
 * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
 */

public class MxRuntimeException extends RuntimeException {

  public MxRuntimeException() {
  }

  public MxRuntimeException(String message) {
    super(message);
  }

  public MxRuntimeException(Throwable cause) {
    super(cause);
  }

  public MxRuntimeException(String message, Throwable cause) {
    super(message, cause);
  }

}