📄 noninvertibletransformexception.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -