]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.backup/src/org/simantics/backup/BackupException.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.backup / src / org / simantics / backup / BackupException.java
1 package org.simantics.backup;
2
3 public class BackupException extends Exception {
4
5     private static final long serialVersionUID = -8745891620873007043L;
6
7     public BackupException(String message, Throwable cause,
8             boolean enableSuppression, boolean writableStackTrace) {
9         super(message, cause, enableSuppression, writableStackTrace);
10     }
11
12     public BackupException(String message, Throwable cause) {
13         super(message, cause);
14     }
15
16     public BackupException(String message) {
17         super(message);
18     }
19
20     public BackupException(Throwable cause) {
21         super(cause);
22     }
23
24 }