magickexception.java

来自「手机图像自动转换」· Java 代码 · 共 22 行

JAVA
22
字号
package magick;/** * Exception class for all encompassing Exception. * * @see MagickApiException * @author Eric Yeo */public class MagickException extends Exception {    /**     * Construct an exception with a message.     *     * @param mesg message attached to the exception     */    public MagickException(String mesg)    {	super(mesg);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?