summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java
diff options
context:
space:
mode:
authorrbuj <robert.buj@gmail.com>2014-09-04 15:58:32 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-09-04 09:08:09 -0500
commita5a9457609e8bbe76a8c6d620b81b8666c2e4491 (patch)
tree9651dc29fa39243b87b0ffc79b20b6d5305f0a42 /xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java
parent8e4dc1d760d85e09bbc3f3bbb5b8be2947db1b63 (diff)
xmerge: javadoc maintenance and minor code formatting
Javadoc: * Replaces <code>..</code> tags with {@code ..}. * Replaces HTML entities with {@literal ..} * Removes <p>..</p> tags in the first sentence. * Reduces code snippet spacing. * Adds tables. * Uses only one space after a comment delimiter. * Adjusts the margins. Minor code formating: * Removes some extra blank lines (very few). * Fixes some indentations (very few). * Adjusts the margins in some method headers (very few). Change-Id: I01bd9df58e4cb41bc3a38a2b2d3d7d2612081c32 Reviewed-on: https://gerrit.libreoffice.org/11202 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java12
1 files changed, 4 insertions, 8 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java
index 3072f2e0e748..3630ed9c2d1d 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/RegistryException.java
@@ -19,20 +19,16 @@
package org.openoffice.xmerge.util.registry;
/**
- * This <code>Exception</code> is thrown by converter registry
- * algorithms.
+ * This {@code Exception} is thrown by converter registry algorithms.
*/
public class RegistryException extends Exception {
-
/**
- * Exception thrown by merge algorithms.
+ * Exception thrown by merge algorithms.
*
- * @param message Message to be included in the
- * <code>Exception</code>.
+ * @param message Message to be included in the {@code Exception}.
*/
public RegistryException(String message) {
super(message);
}
-}
-
+} \ No newline at end of file