Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/others/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/util/AssertionFailedException.java')
-rw-r--r--plugins/others/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/util/AssertionFailedException.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/others/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/util/AssertionFailedException.java b/plugins/others/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/util/AssertionFailedException.java
deleted file mode 100644
index 9253fbee524..00000000000
--- a/plugins/others/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/util/AssertionFailedException.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2008 CEA LIST.
- *
- *
- * 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:
- * Remi Schnekenburger (CEA LIST) Remi.Schnekenburger@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.parsers.util;
-
-/**
- * <code>AssertionFailedException</code> is a runtime exception thrown by some of the methods in <code>Assert</code>.
- *
- * @see Assert
- */
-public class AssertionFailedException extends RuntimeException {
-
- /**
- *
- */
- private static final long serialVersionUID = 5329046801658039137L;
-
- /**
- * Constructs a new exception with the given message.
- *
- * @param detail
- * the message
- */
- public AssertionFailedException(String detail) {
- super(detail);
- }
-}

Back to the top