1 /**
2 *
3 */
4 package net.sf.jour.processor;
5
6 import java.io.IOException;
7
8 class CompileIOException extends IOException {
9
10 private static final long serialVersionUID = 1L;
11
12 private Throwable cause;
13
14 public CompileIOException(Throwable cause) {
15 this.cause = cause;
16 }
17 public Throwable getCause() {
18 return cause;
19 }
20 }