]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural.synchronization/src/org/simantics/structural/synchronization/protocol/SynchronizationException.java
Separate DB and non-DB code to different structural sync bundles
[simantics/platform.git] / bundles / org.simantics.structural.synchronization / src / org / simantics / structural / synchronization / protocol / SynchronizationException.java
1 package org.simantics.structural.synchronization.protocol;
2
3 /**
4  * An exception thrown during synchronization.
5  */
6 public class SynchronizationException extends RuntimeException {
7
8         private static final long serialVersionUID = 376889955697028724L;
9
10         public SynchronizationException() {
11                 super();
12         }
13
14         public SynchronizationException(String message, Throwable cause) {
15                 super(message, cause);
16         }
17
18         public SynchronizationException(String message) {
19                 super(message);
20         }
21
22         public SynchronizationException(Throwable cause) {
23                 super(cause);
24         }       
25
26 }