001/** 002 * @Title: ImageError.java 003 * @Package net.gdface.exception 004 * @Description: TODO 005 * @author guyadong 006 * @date 2014-10-8 下åˆ7:27:34 007 * @version V1.0 008 */ 009package net.gdface.image; 010 011import net.gdface.exception.FACEException; 012 013/** 014 * 获å–图åƒå¼‚常 015 * 016 * @author guyadong 017 * @deprecated non-standard class name,instead use {@link ImageErrorException} 018 * 019 */ 020public class ImageError extends FACEException { 021 022 /** 023 * 024 */ 025 private static final long serialVersionUID = 124609099246843533L; 026 027 public ImageError(Throwable cause) { 028 super(cause); 029 } 030 031 /** 032 * 033 */ 034 public ImageError() { 035 // TODO Auto-generated constructor stub 036 } 037 038 /** 039 * @param s 040 */ 041 public ImageError(String s) { 042 super(s); 043 // TODO Auto-generated constructor stub 044 } 045 046 /** 047 * @param s 048 * @param cause 049 */ 050 public ImageError(String s, Throwable cause) { 051 super(s, cause); 052 // TODO Auto-generated constructor stub 053 } 054 055}