1 package net.sourceforge.barbecue.output;
2
3 public class OutputException extends Exception {
4
5 public OutputException(String msg) {
6 super(msg);
7 }
8
9 public OutputException(String msg, Throwable cause) {
10 super(msg, cause);
11 }
12
13 public OutputException(Throwable cause) {
14 super(cause);
15 }
16 }