1 package org.simantics.backup;
3 public class BackupException extends Exception {
5 private static final long serialVersionUID = -8745891620873007043L;
7 public BackupException(String message, Throwable cause,
8 boolean enableSuppression, boolean writableStackTrace) {
9 super(message, cause, enableSuppression, writableStackTrace);
12 public BackupException(String message, Throwable cause) {
13 super(message, cause);
16 public BackupException(String message) {
20 public BackupException(Throwable cause) {