noninvertibletransformexception.java

来自「Hecl编程语言是一个高层次的脚本语言的Java实现。其用意是要小」· Java 代码 · 共 31 行

JAVA
31
字号
/* * Copyright (C) 2005, 2006 data2c GmbH (www.data2c.com) * * Author: Wolfgang S. Kechel - wolfgang.kechel@data2c.com *  * J2ME version of java.awt.geom.NoninvertibleTransformException. *///#ifndef j2sepackage org.awt.geom;/** * The <code>NoninvertibleTransformException</code> class represents * an exception that is thrown if an operation is performed requiring * the inverse of an {@link AffineTransform} object but the  * <code>AffineTransform</code> is in a non-invertible state. */public class NoninvertibleTransformException extends java.lang.Exception {    /**     * Constructs an instance of     * <code>NoninvertibleTransformException</code>     * with the specified detail message.     * @param   s     the detail message     */    public NoninvertibleTransformException(String s) {        super (s);    }}//#endif

⌨️ 快捷键说明

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