]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.autoui/src/main/java/org/argeo/slc/autoui/DetachedException.java
Introduce detached execution server.
[gpl/argeo-slc.git] / org.argeo.slc.autoui / src / main / java / org / argeo / slc / autoui / DetachedException.java
1 package org.argeo.slc.autoui;
2
3 public class DetachedException extends RuntimeException {
4 private Exception cause;
5
6 public DetachedException(String message) {
7 super(message);
8 }
9
10 public DetachedException(String message, Exception cause) {
11 super(message);
12 this.cause = cause;
13 }
14 }