001package net.gdface.image; 002 003 004/** 005 * éžå›¾åƒæ•°æ® 006 * @author guyadong 007 */ 008public class NotImageException extends ImageErrorException { 009 010 private static final long serialVersionUID = -2929925579607787681L; 011 012 public NotImageException(Throwable cause) { 013 super(cause); 014 } 015 016 public NotImageException() { 017 } 018 019 public NotImageException(String s) { 020 super(s); 021 } 022 023 public NotImageException(String s, Throwable cause) { 024 super(s, cause); 025 } 026 027}