< prev index next >
src/java.desktop/share/classes/java/awt/image/RasterFormatException.java
Print this page
@@ -25,21 +25,21 @@
package java.awt.image;
/**
- * The <code>RasterFormatException</code> is thrown if there is
+ * The {@code RasterFormatException} is thrown if there is
* invalid layout information in the {@link Raster}.
*/
public class RasterFormatException extends java.lang.RuntimeException {
private static final long serialVersionUID = 96598996116164315L;
/**
- * Constructs a new <code>RasterFormatException</code> with the
+ * Constructs a new {@code RasterFormatException} with the
* specified message.
* @param s the message to generate when a
- * <code>RasterFormatException</code> is thrown
+ * {@code RasterFormatException} is thrown
*/
public RasterFormatException(String s) {
super (s);
}
}
< prev index next >