X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fexceptions%2FImageOutputException.java;fp=src%2Fjalview%2Fio%2Fexceptions%2FImageOutputException.java;h=bf06494ccf520653984035d018152ffeff5018f0;hb=cfd38a33612b73a5b050c9f19d0fb0d81a7b646a;hp=0000000000000000000000000000000000000000;hpb=de9592c0781569ccefd4c115bb36524d6c9deaab;p=jalview.git diff --git a/src/jalview/io/exceptions/ImageOutputException.java b/src/jalview/io/exceptions/ImageOutputException.java new file mode 100644 index 0000000..bf06494 --- /dev/null +++ b/src/jalview/io/exceptions/ImageOutputException.java @@ -0,0 +1,36 @@ +package jalview.io.exceptions; + +/** + * wrapper for passing error messages and exceptions back to UI when image io goes wrong + * @author jprocter + * + */ +public class ImageOutputException extends Exception +{ + + public ImageOutputException() + { + } + + public ImageOutputException(String message) + { + super(message); + } + + public ImageOutputException(Throwable cause) + { + super(cause); + } + + public ImageOutputException(String message, Throwable cause) + { + super(message, cause); + } + + public ImageOutputException(String message, Throwable cause, + boolean enableSuppression, boolean writableStackTrace) + { + super(message, cause, enableSuppression, writableStackTrace); + } + +}