]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.export.core/src/org/simantics/export/core/error/ExportException.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.export.core / src / org / simantics / export / core / error / ExportException.java
1 package org.simantics.export.core.error;
2
3 public class ExportException extends Exception {
4
5         private static final long serialVersionUID = 1L;
6
7         public ExportException() {
8                 super();
9                 // TODO Auto-generated constructor stub
10         }
11
12         public ExportException(String message, Throwable cause) {
13                 super(message, cause);
14                 // TODO Auto-generated constructor stub
15         }
16
17         public ExportException(String message) {
18                 super(message);
19                 // TODO Auto-generated constructor stub
20         }
21
22         public ExportException(Throwable cause) {
23                 super(cause);
24                 // TODO Auto-generated constructor stub
25         }
26
27 }