Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/eclipse/ExtensionConfigException.java')
-rw-r--r--plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/eclipse/ExtensionConfigException.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/eclipse/ExtensionConfigException.java b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/eclipse/ExtensionConfigException.java
new file mode 100644
index 0000000000..84aafea998
--- /dev/null
+++ b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/eclipse/ExtensionConfigException.java
@@ -0,0 +1,53 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools.
+ * 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:
+ * Eike Stepper - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.net4j.util.eclipse;
+
+
+public class ExtensionConfigException extends RuntimeException
+{
+ /**
+ *
+ */
+ private static final long serialVersionUID = 3979274633562501681L;
+
+ /**
+ *
+ */
+ public ExtensionConfigException()
+ {
+ super();
+ }
+
+ /**
+ * @param arg0
+ */
+ public ExtensionConfigException(String arg0)
+ {
+ super(arg0);
+ }
+
+ /**
+ * @param arg0
+ */
+ public ExtensionConfigException(Throwable arg0)
+ {
+ super(arg0);
+ }
+
+ /**
+ * @param arg0
+ * @param arg1
+ */
+ public ExtensionConfigException(String arg0, Throwable arg1)
+ {
+ super(arg0, arg1);
+ }
+} \ No newline at end of file

Back to the top