bf06494ccf520653984035d018152ffeff5018f0
[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 goes wrong
5  * @author jprocter
6  *
7  */
8 public class ImageOutputException extends Exception
9 {
10
11   public ImageOutputException()
12   {
13   }
14
15   public ImageOutputException(String message)
16   {
17     super(message);
18   }
19
20   public ImageOutputException(Throwable cause)
21   {
22     super(cause);
23   }
24
25   public ImageOutputException(String message, Throwable cause)
26   {
27     super(message, cause);
28   }
29
30   public ImageOutputException(String message, Throwable cause,
31           boolean enableSuppression, boolean writableStackTrace)
32   {
33     super(message, cause, enableSuppression, writableStackTrace);
34   }
35
36 }