Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/wizard/page/exception/SelectedEClassifierRuntimeException.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/wizard/page/exception/SelectedEClassifierRuntimeException.java76
1 files changed, 38 insertions, 38 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/wizard/page/exception/SelectedEClassifierRuntimeException.java b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/wizard/page/exception/SelectedEClassifierRuntimeException.java
index cabf0806d31..d07425f18ab 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/wizard/page/exception/SelectedEClassifierRuntimeException.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.ui/src/org/eclipse/papyrus/emf/facet/util/emf/ui/internal/exported/util/wizard/page/exception/SelectedEClassifierRuntimeException.java
@@ -1,38 +1,38 @@
-/**
- * Copyright (c) 2012 Mia-Software.
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
- */
-package org.eclipse.papyrus.emf.facet.util.emf.ui.internal.exported.util.wizard.page.exception;
-
-/**
- * @since 0.3
- */
-public class SelectedEClassifierRuntimeException extends RuntimeException {
-
-
- private static final long serialVersionUID = -1021467669726982508L;
-
- public SelectedEClassifierRuntimeException() {
- super( "List not totally loaded. Check if the list's job is done before doing the selection."); //$NON-NLS-1$
- }
-
- public SelectedEClassifierRuntimeException(final String message) {
- super(message);
- }
-
- public SelectedEClassifierRuntimeException(final String message,
- final Throwable cause) {
- super(message, cause);
- }
-
- public SelectedEClassifierRuntimeException(final Throwable cause) {
- super(cause);
- }
-}
+/**
+ * Copyright (c) 2012 Mia-Software.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
+ */
+package org.eclipse.papyrus.emf.facet.util.emf.ui.internal.exported.util.wizard.page.exception;
+
+/**
+ * @since 0.3
+ */
+public class SelectedEClassifierRuntimeException extends RuntimeException {
+
+
+ private static final long serialVersionUID = -1021467669726982508L;
+
+ public SelectedEClassifierRuntimeException() {
+ super( "List not totally loaded. Check if the list's job is done before doing the selection."); //$NON-NLS-1$
+ }
+
+ public SelectedEClassifierRuntimeException(final String message) {
+ super(message);
+ }
+
+ public SelectedEClassifierRuntimeException(final String message,
+ final Throwable cause) {
+ super(message, cause);
+ }
+
+ public SelectedEClassifierRuntimeException(final Throwable cause) {
+ super(cause);
+ }
+}

Back to the top