Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/NotDefinedException.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/NotDefinedException.java40
1 files changed, 20 insertions, 20 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/NotDefinedException.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/NotDefinedException.java
index e5b3d5d6476..ec76886b790 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/NotDefinedException.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/NotDefinedException.java
@@ -28,26 +28,26 @@ package org.eclipse.ui.activities;
*/
public final class NotDefinedException extends Exception {
- /**
- * Generated serial version UID for this class.
- * @since 3.1
- */
- private static final long serialVersionUID = 4050201929596811061L;
+ /**
+ * Generated serial version UID for this class.
+ *
+ * @since 3.1
+ */
+ private static final long serialVersionUID = 4050201929596811061L;
- /**
- * Creates a new instance of this class with no specified detail message.
- */
- public NotDefinedException() {
- //no-op
- }
+ /**
+ * Creates a new instance of this class with no specified detail message.
+ */
+ public NotDefinedException() {
+ // no-op
+ }
- /**
- * Creates a new instance of this class with the specified detail message.
- *
- * @param s
- * the detail message.
- */
- public NotDefinedException(String s) {
- super(s);
- }
+ /**
+ * Creates a new instance of this class with the specified detail message.
+ *
+ * @param s the detail message.
+ */
+ public NotDefinedException(String s) {
+ super(s);
+ }
}

Back to the top