Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/classloader/StoreClassLoadException.java')
-rwxr-xr-xcore/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/classloader/StoreClassLoadException.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/core/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/classloader/StoreClassLoadException.java b/core/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/classloader/StoreClassLoadException.java
new file mode 100755
index 000000000..9b8e6f753
--- /dev/null
+++ b/core/org.eclipse.emf.teneo/src/org/eclipse/emf/teneo/classloader/StoreClassLoadException.java
@@ -0,0 +1,49 @@
+/**
+ * <copyright>
+ *
+ * Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) and others
+ * 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:
+ * Martin Taal - Initial API and implementation
+ *
+ * </copyright>
+ *
+ * $Id: StoreClassLoadException.java,v 1.5 2008/02/28 07:08:33 mtaal Exp $
+ */
+
+package org.eclipse.emf.teneo.classloader;
+
+import org.eclipse.emf.teneo.TeneoException;
+
+/**
+ * Is used to throw exception when getting a class in the classloader
+ *
+ * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
+ * @version $Revision: 1.5 $
+ */
+
+public class StoreClassLoadException extends TeneoException {
+
+ /**
+ * Serial ID
+ */
+ private static final long serialVersionUID = -952752250000575101L;
+
+ /**
+ * The constructor, logs the exception also
+ */
+ public StoreClassLoadException(String msg, Throwable cause) {
+ super(msg, cause);
+ }
+
+ /**
+ * The constructor, logs the exception also
+ */
+ public StoreClassLoadException(String msg) {
+ super(msg);
+ }
+}

Back to the top