Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/ddl/SchemaElementNotFoundException.java')
-rw-r--r--plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/ddl/SchemaElementNotFoundException.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/ddl/SchemaElementNotFoundException.java b/plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/ddl/SchemaElementNotFoundException.java
new file mode 100644
index 0000000000..e663db898f
--- /dev/null
+++ b/plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/ddl/SchemaElementNotFoundException.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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:
+ * Eike Stepper - initial API and implementation
+ */
+package org.eclipse.net4j.db.ddl;
+
+import org.eclipse.net4j.db.DBException;
+import org.eclipse.net4j.db.DBUtil;
+
+/**
+ * @since 4.2
+ * @author Eike Stepper
+ */
+public class SchemaElementNotFoundException extends DBException
+{
+ private static final long serialVersionUID = 1L;
+
+ private final IDBSchemaElement parent;
+
+ private final IDBSchemaElement.SchemaElementType type;
+
+ private final String name;
+
+ public SchemaElementNotFoundException(IDBSchemaElement parent, IDBSchemaElement.SchemaElementType type, String name)
+ {
+ super("Schema element '" + name + "' of type " + type + " not found in " + DBUtil.dumpToString(parent));
+ this.parent = parent;
+ this.type = type;
+ this.name = name;
+ }
+
+ public IDBSchemaElement getParent()
+ {
+ return parent;
+ }
+
+ public IDBSchemaElement.SchemaElementType getType()
+ {
+ return type;
+ }
+
+ public String getName()
+ {
+ return name;
+ }
+}

Back to the top