1 package de.desy.acop.video.displayer; 2 3 4 /** 5 * <code>ImageException</code> implements exception handling for image display and 6 * image transfer based exceptions. Basic implementation subject to extension. 7 * <br> 8 * <br> 9 * <b>Note:</b>This class is only a very basic construct and might be substantially changed 10 * in future. It fits its purpose currently but will not win a price for meaningful class 11 * design! 12 * 13 * @author <a href="mailto:stefan.weisse@desy.de">Stefan Weisse</a> 14 * @version $Id: Templates.xml,v 1.10 2008/06/23 14:30:13 sweisse Exp $ 15 * 16 */ 17 18 19 public class ImageException extends Exception { 20 21 private static final long serialVersionUID = 1L; 22 23 /** basic construction of instance. */ 24 public ImageException(String message) { 25 super(message); 26 } 27 28 /** extended construction of instance. */ 29 public ImageException(String message, Exception cause) { 30 super(message, cause); 31 } 32 33 }