summaryrefslogtreecommitdiff
path: root/java/lang/IncompatibleClassChangeError.java
diff options
context:
space:
mode:
authorBrian Jones <cbj@gnu.org>1998-11-07 23:27:38 +0000
committerBrian Jones <cbj@gnu.org>1998-11-07 23:27:38 +0000
commitcbb6f95708087972f06d9059e78ac88b77e8e3df (patch)
tree1271c4a5323ff34ac19db573500230033b74b943 /java/lang/IncompatibleClassChangeError.java
parentc88ef813b80007f4f4bafe3503cabe46043b2bab (diff)
downloadclasspath-cbb6f95708087972f06d9059e78ac88b77e8e3df.tar.gz
initial checkin
Diffstat (limited to 'java/lang/IncompatibleClassChangeError.java')
-rw-r--r--java/lang/IncompatibleClassChangeError.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/java/lang/IncompatibleClassChangeError.java b/java/lang/IncompatibleClassChangeError.java
new file mode 100644
index 000000000..e1b019f7c
--- /dev/null
+++ b/java/lang/IncompatibleClassChangeError.java
@@ -0,0 +1,50 @@
+/*************************************************************************
+/* IncompatibleClassChangeError.java
+/*
+/* Copyright (c) 1998 by Free Software Foundation, Inc.
+/*
+/* This program is free software; you can redistribute it and/or modify
+/* it under the terms of the GNU Library General Public License as published
+/* by the Free Software Foundation, version 2. (see COPYING.LIB)
+/*
+/* This program is distributed in the hope that it will be useful, but
+/* WITHOUT ANY WARRANTY; without even the implied warranty of
+/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+/* GNU General Public License for more details.
+/*
+/* You should have received a copy of the GNU General Public License
+/* along with this program; if not, write to the Free Software Foundation
+/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA
+/*************************************************************************/
+
+package java.lang;
+
+/**
+ * An <code>IncompatibleClassChangeError</code> is thrown when the
+ * definition of a class used by the currently executing method has
+ * changed in an incompatible way.
+ *
+ * @since JDK 1.0
+ *
+ * @author Brian Jones
+ */
+public class IncompatibleClassChangeError extends LinkageError
+{
+ static final long serialVersionUID = -4914975503642802119L;
+
+ /**
+ * Create an error without a message.
+ */
+ public IncompatibleClassChangeError()
+ {
+ super();
+ }
+
+ /**
+ * Create an error with a message.
+ */
+ public IncompatibleClassChangeError(String s)
+ {
+ super(s);
+ }
+}