< prev index next >
src/java.desktop/share/classes/java/awt/geom/NoninvertibleTransformException.java
Print this page
@@ -24,22 +24,22 @@
*/
package java.awt.geom;
/**
- * The <code>NoninvertibleTransformException</code> class represents
+ * The {@code NoninvertibleTransformException} 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.
+ * {@code AffineTransform} is in a non-invertible state.
*/
public class NoninvertibleTransformException extends java.lang.Exception {
private static final long serialVersionUID = 6137225240503990466L;
/**
* Constructs an instance of
- * <code>NoninvertibleTransformException</code>
+ * {@code NoninvertibleTransformException}
* with the specified detail message.
* @param s the detail message
* @since 1.2
*/
public NoninvertibleTransformException(String s) {
< prev index next >