More precise Javadoc.
diff --git a/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java b/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java
index f8f3ff7..4173c0d 100644
--- a/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java
+++ b/src/main/java/org/apache/commons/io/UncheckedIOExceptions.java
@@ -31,11 +31,11 @@
     /**
      * Creates a new UncheckedIOException for the given detail message.
      * <p>
-     * This method exists because there is no String constructor in UncheckedIOException.
+     * This method exists because there is no String constructor in {@link UncheckedIOException}.
      * </p>
      *
      * @param message the detail message.
-     * @return a new UncheckedIOException.
+     * @return a new {@link UncheckedIOException}.
      */
     public static UncheckedIOException create(final Object message) {
         final String string = Objects.toString(message);
@@ -45,12 +45,12 @@
     /**
      * Creates a new UncheckedIOException for the given detail message.
      * <p>
-     * This method exists because there is no String constructor in UncheckedIOException.
+     * This method exists because there is no String constructor in {@link UncheckedIOException}.
      * </p>
      *
      * @param message the detail message.
      * @param e cause the {@code IOException}.
-     * @return a new UncheckedIOException.
+     * @return a new {@link UncheckedIOException}.
      */
     public static UncheckedIOException create(final Object message, final IOException e) {
         return new UncheckedIOException(Objects.toString(message), e);