]> git.argeo.org Git - gpl/argeo-slc.git/blob - DetachedException.java
6755abd7ef093ad45a4dfc612e17b1314b684aba
[gpl/argeo-slc.git] / DetachedException.java
1 package org.argeo.slc.detached;
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 }