MagickException.java
上传用户:qingzhou
上传日期:2013-04-21
资源大小:733k
文件大小:0k
源码类别:

破解

开发平台:

Java

  1. package magick;
  2. /**
  3.  * Exception class for all encompassing Exception.
  4.  *
  5.  * @see MagickApiException
  6.  * @author Eric Yeo
  7.  */
  8. public class MagickException extends Exception {
  9.     /**
  10.      * Construct an exception with a message.
  11.      *
  12.      * @param mesg message attached to the exception
  13.      */
  14.     public MagickException(String mesg)
  15.     {
  16. super(mesg);
  17.     }
  18. }