summaryrefslogtreecommitdiffstats
path: root/awt/java/awt/FontFormatException.java
diff options
context:
space:
mode:
Diffstat (limited to 'awt/java/awt/FontFormatException.java')
-rw-r--r--awt/java/awt/FontFormatException.java16
1 files changed, 11 insertions, 5 deletions
diff --git a/awt/java/awt/FontFormatException.java b/awt/java/awt/FontFormatException.java
index c017fd2..806711a 100644
--- a/awt/java/awt/FontFormatException.java
+++ b/awt/java/awt/FontFormatException.java
@@ -18,21 +18,27 @@
* @author Ilya S. Okomin
* @version $Revision$
*/
+
package java.awt;
/**
- * The FontFormatException class is used to provide notification
- * and information that font can't be created.
+ * The FontFormatException class is used to provide notification and information
+ * that font can't be created.
+ *
+ * @since Android 1.0
*/
public class FontFormatException extends Exception {
-
- /** The Constant serialVersionUID. */
+
+ /**
+ * The Constant serialVersionUID.
+ */
private static final long serialVersionUID = -4481290147811361272L;
/**
* Instantiates a new font format exception with detailed message.
*
- * @param reason the detailed message.
+ * @param reason
+ * the detailed message.
*/
public FontFormatException(String reason) {
super(reason);