1567cfe90b34bdbe387fa802142e42a1b535ca52
[jalview.git] / src / jalview / io / exceptions / ImageOutputException.java
1 package jalview.io.exceptions;
2
3 /**
4  * wrapper for passing error messages and exceptions back to UI when image io
5  * goes wrong
6  * 
7  * @author jprocter
8  *
9  */
10 public class ImageOutputException extends Exception
11 {
12
13   public ImageOutputException()
14   {
15   }
16
17   public ImageOutputException(String message)
18   {
19     super(message);
20   }
21
22   public ImageOutputException(Throwable cause)
23   {
24     super(cause);
25   }
26
27   public ImageOutputException(String message, Throwable cause)
28   {
29     super(message, cause);
30   }
31
32   public ImageOutputException(String message, Throwable cause,
33           boolean enableSuppression, boolean writableStackTrace)
34   {
35     super(message, cause, enableSuppression, writableStackTrace);
36   }
37
38 }