]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.core/src/org/argeo/sync/SyncException.java
[maven-release-plugin] prepare release argeo-commons-2.1.90
[lgpl/argeo-commons.git] / org.argeo.core / src / org / argeo / sync / SyncException.java
1 package org.argeo.sync;
2
3 /** Commons exception for sync */
4 public class SyncException extends RuntimeException {
5 private static final long serialVersionUID = -3371314343580218538L;
6
7 public SyncException(String message) {
8 super(message);
9 }
10
11 public SyncException(String message, Throwable cause) {
12 super(message, cause);
13 }
14
15 public SyncException(Object source, Object target, Throwable cause) {
16 super("Cannot sync from " + source + " to " + target, cause);
17 }
18 }