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