]> git.argeo.org Git - gpl/argeo-suite.git/blob - workbench/SuiteWorkbenchException.java
Prepare next development cycle
[gpl/argeo-suite.git] / workbench / SuiteWorkbenchException.java
1 package org.argeo.suite.workbench;
2
3 public class SuiteWorkbenchException extends RuntimeException {
4 private static final long serialVersionUID = 5276857785523513563L;
5
6 public SuiteWorkbenchException(String message) {
7 super(message);
8 }
9
10 public SuiteWorkbenchException(Throwable cause) {
11 super(cause);
12 }
13
14 public SuiteWorkbenchException(String message, Throwable cause) {
15 super(message, cause);
16 }
17 }