Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ModelException.java')
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ModelException.java108
1 files changed, 54 insertions, 54 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ModelException.java b/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ModelException.java
index 5d48fb6576c..aa2e986df94 100644
--- a/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ModelException.java
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/resource/ModelException.java
@@ -1,54 +1,54 @@
-/**
- *
- */
-package org.eclipse.papyrus.infra.core.resource;
-
-/**
- * Root exception for this package.
- *
- * @author cedric dumoulin
- *
- */
-public class ModelException extends Exception {
-
- /**
- *
- */
- private static final long serialVersionUID = 1L;
-
- /**
- * Constructor.
- *
- */
- public ModelException() {
- }
-
- /**
- * Constructor.
- *
- * @param message
- */
- public ModelException(String message) {
- super(message);
- }
-
- /**
- * Constructor.
- *
- * @param cause
- */
- public ModelException(Throwable cause) {
- super(cause);
- }
-
- /**
- * Constructor.
- *
- * @param message
- * @param cause
- */
- public ModelException(String message, Throwable cause) {
- super(message, cause);
- }
-
-}
+/**
+ *
+ */
+package org.eclipse.papyrus.infra.core.resource;
+
+/**
+ * Root exception for this package.
+ *
+ * @author cedric dumoulin
+ *
+ */
+public class ModelException extends Exception {
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * Constructor.
+ *
+ */
+ public ModelException() {
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param message
+ */
+ public ModelException(String message) {
+ super(message);
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param cause
+ */
+ public ModelException(Throwable cause) {
+ super(cause);
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param message
+ * @param cause
+ */
+ public ModelException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+}

Back to the top