Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbridgha2004-11-24 04:36:19 +0000
committercbridgha2004-11-24 04:36:19 +0000
commit37a5e54f6cc5d2d12d4944023664b2bc1263f9a4 (patch)
tree8d3ba98257ef1ef29dad419e3cfc6ac130239cd0 /plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/InvalidInputException.java
parent3e81969e07a18f2363d9e7b22b93856284871d55 (diff)
downloadwebtools.javaee-37a5e54f6cc5d2d12d4944023664b2bc1263f9a4.tar.gz
webtools.javaee-37a5e54f6cc5d2d12d4944023664b2bc1263f9a4.tar.xz
webtools.javaee-37a5e54f6cc5d2d12d4944023664b2bc1263f9a4.zip
internal rename
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/InvalidInputException.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/InvalidInputException.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/InvalidInputException.java b/plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/InvalidInputException.java
new file mode 100644
index 000000000..0745d33d5
--- /dev/null
+++ b/plugins/org.eclipse.jst.j2ee.core/j2ee-validation/org/eclipse/jst/j2ee/model/internal/validation/InvalidInputException.java
@@ -0,0 +1,41 @@
+/*******************************************************************************
+ * Copyright (c) 2001, 2004 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.jst.j2ee.model.internal.validation;
+
+
+import org.eclipse.jem.java.JavaClass;
+
+/**
+ * This exception is thrown when either a type cannot be reflected
+ * or when expected input (e.g. the remote interface) is null.
+ */
+public class InvalidInputException extends Exception {
+ private JavaClass _class = null;
+
+ /**
+ * This constructor should be used only when there is no information
+ * available to identify what is invalid.
+ */
+ public InvalidInputException() {
+ this(null);
+ }
+
+ /**
+ * This constructor is used when the given type cannot be reflected.
+ */
+ public InvalidInputException(JavaClass clazz) {
+ _class = clazz;
+ }
+
+ public JavaClass getJavaClass() {
+ return _class;
+ }
+}

Back to the top