Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/src/org/eclipse/papyrus/uml/profile/drafter/exceptions/NotFoundException.java')
-rw-r--r--plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/src/org/eclipse/papyrus/uml/profile/drafter/exceptions/NotFoundException.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/src/org/eclipse/papyrus/uml/profile/drafter/exceptions/NotFoundException.java b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/src/org/eclipse/papyrus/uml/profile/drafter/exceptions/NotFoundException.java
index 88d90847c80..cdce2913154 100644
--- a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/src/org/eclipse/papyrus/uml/profile/drafter/exceptions/NotFoundException.java
+++ b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/src/org/eclipse/papyrus/uml/profile/drafter/exceptions/NotFoundException.java
@@ -31,7 +31,7 @@ public class NotFoundException extends DraftProfileException {
*
*/
public NotFoundException() {
- // TODO Auto-generated constructor stub
+
}
/**
@@ -41,7 +41,7 @@ public class NotFoundException extends DraftProfileException {
*/
public NotFoundException(String message) {
super(message);
- // TODO Auto-generated constructor stub
+
}
/**
@@ -51,7 +51,7 @@ public class NotFoundException extends DraftProfileException {
*/
public NotFoundException(Throwable cause) {
super(cause);
- // TODO Auto-generated constructor stub
+
}
/**
@@ -62,7 +62,7 @@ public class NotFoundException extends DraftProfileException {
*/
public NotFoundException(String message, Throwable cause) {
super(message, cause);
- // TODO Auto-generated constructor stub
+
}
/**
@@ -75,7 +75,7 @@ public class NotFoundException extends DraftProfileException {
*/
public NotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
- // TODO Auto-generated constructor stub
+
}
}

Back to the top