]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/jdt-after/core extension/org/eclipse/jdt/internal/corext/ValidateEditException.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / core extension / org / eclipse / jdt / internal / corext / ValidateEditException.java
diff --git a/case-study/jdt-after/core extension/org/eclipse/jdt/internal/corext/ValidateEditException.java b/case-study/jdt-after/core extension/org/eclipse/jdt/internal/corext/ValidateEditException.java
new file mode 100644 (file)
index 0000000..8000fa5
--- /dev/null
@@ -0,0 +1,26 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 IBM Corporation 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:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.jdt.internal.corext;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IStatus;
+
+/**
+ * Exception thrown if a valid edit failed.
+ */
+public class ValidateEditException extends CoreException {
+
+       private static final long serialVersionUID= 1L;
+
+       public ValidateEditException(IStatus status) {
+               super(status);
+       }
+}