Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotDefinedException.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotDefinedException.java53
1 files changed, 25 insertions, 28 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotDefinedException.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotDefinedException.java
index ae55af43a64..5ebf739e7aa 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotDefinedException.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotDefinedException.java
@@ -28,36 +28,33 @@ package org.eclipse.ui.commands;
@SuppressWarnings("all")
public final class NotDefinedException extends CommandException {
- /**
- * Generated serial version UID for this class.
- *
- * @since 3.1
- */
- private static final long serialVersionUID = 3257572788998124596L;
+ /**
+ * Generated serial version UID for this class.
+ *
+ * @since 3.1
+ */
+ private static final long serialVersionUID = 3257572788998124596L;
- /**
- * Creates a new instance of this class with the specified detail message.
- *
- * @param s
- * the detail message.
- */
+ /**
+ * Creates a new instance of this class with the specified detail message.
+ *
+ * @param s the detail message.
+ */
@Deprecated
- public NotDefinedException(String s) {
- super(s);
- }
+ public NotDefinedException(String s) {
+ super(s);
+ }
- /**
- * Constructs a legacy <code>NotDefinedException</code> based on the new
- * <code>NotDefinedException</code>.
- *
- * @param e
- * The exception from which this exception should be created;
- * must not be <code>null</code>.
- * @since 3.1
- */
+ /**
+ * Constructs a legacy <code>NotDefinedException</code> based on the new
+ * <code>NotDefinedException</code>.
+ *
+ * @param e The exception from which this exception should be created; must not
+ * be <code>null</code>.
+ * @since 3.1
+ */
@Deprecated
- public NotDefinedException(
- final org.eclipse.core.commands.common.NotDefinedException e) {
- super(e.getMessage(), e);
- }
+ public NotDefinedException(final org.eclipse.core.commands.common.NotDefinedException e) {
+ super(e.getMessage(), e);
+ }
}

Back to the top