1 package com.atlassian.activeobjects.spi;
2
3 /**
4 * The generic <em>runtime</em> exception for the DB exporter module.
5 *
6 * @since 1.0
7 */
8 public abstract class ImportExportException extends RuntimeException {
9 public ImportExportException(String message) {
10 super(message);
11 }
12
13 public ImportExportException(String message, Throwable cause) {
14 super(message, cause);
15 }
16
17 public ImportExportException(Throwable cause) {
18 super(cause);
19 }
20 }