summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal/gwt/server/SystemMessageException.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/terminal/gwt/server/SystemMessageException.java')
-rw-r--r--src/com/vaadin/terminal/gwt/server/SystemMessageException.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/SystemMessageException.java b/src/com/vaadin/terminal/gwt/server/SystemMessageException.java
deleted file mode 100644
index d15ff8a7ef..0000000000
--- a/src/com/vaadin/terminal/gwt/server/SystemMessageException.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
-@VaadinApache2LicenseForJavaFiles@
- */
-package com.vaadin.terminal.gwt.server;
-
-@SuppressWarnings("serial")
-public class SystemMessageException extends RuntimeException {
-
- /**
- * Cause of the method exception
- */
- private Throwable cause;
-
- /**
- * Constructs a new <code>SystemMessageException</code> with the specified
- * detail message.
- *
- * @param msg
- * the detail message.
- */
- public SystemMessageException(String msg) {
- super(msg);
- }
-
- /**
- * Constructs a new <code>SystemMessageException</code> 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 <code>SystemMessageException</code> from another
- * exception.
- *
- * @param cause
- * the cause of the exception.
- */
- public SystemMessageException(Throwable cause) {
- this.cause = cause;
- }
-
- /**
- * @see java.lang.Throwable#getCause()
- */
- @Override
- public Throwable getCause() {
- return cause;
- }
-
-} \ No newline at end of file