]> git.argeo.org Git - gpl/argeo-slc.git/blob - detached/DetachedException.java
Prepare next development cycle
[gpl/argeo-slc.git] / detached / DetachedException.java
1 package org.argeo.slc.detached;
2
3 public class DetachedException extends RuntimeException {
4 static final long serialVersionUID = 1l;
5
6 public DetachedException(String message) {
7 super(message);
8 }
9
10 public DetachedException(String message, Exception cause) {
11 super(message, cause);
12 }
13 }