]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.team.ui/src/org/simantics/team/internal/StagingException.java
f6361246db27c82c3cc2462aef0eb35e535c2e6c
[simantics/platform.git] / bundles / org.simantics.team.ui / src / org / simantics / team / internal / StagingException.java
1 package org.simantics.team.internal;
2
3 /**
4  * @author Tuukka Lehtonen
5  */
6 public class StagingException extends RuntimeException {
7
8     private static final long serialVersionUID = -9019875096293306600L;
9
10     public StagingException() {
11         super();
12     }
13
14     public StagingException(String message, Throwable cause) {
15         super(message, cause);
16     }
17
18     public StagingException(String message) {
19         super(message);
20     }
21
22     public StagingException(Throwable cause) {
23         super(cause);
24     }
25
26 }