package com.itmill.toolkit.terminal.gwt.server; public class SystemMessageException extends RuntimeException { /** * Serial generated by eclipse. */ private static final long serialVersionUID = -8249486543123286960L; /** * Cause of the method exception */ private Throwable cause; /** * Constructs a new SystemMessageException with the specified * detail message. * * @param msg * the detail message. */ public SystemMessageException(String msg) { super(msg); } /** * Constructs a new SystemMessageException with the specified * detail message and cause. * * @param msg * the detail message. * @param cause * the cause of the exception. */ public SystemMessageException(String msg, Throwable cause) { super(msg, cause); } /** * Constructs a new SystemMessageException from another * exception. * * @param cause * the cause of the exception. */ public SystemMessageException(Throwable cause) { this.cause = cause; } /** * @see java.lang.Throwable#getCause() */ public Throwable getCause() { return cause; } }