aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/lang/LinkageError.java
blob: 028702081bae6906be46910d2e15fdab0285e12b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* LinkageError.java -- thrown when classes valid at separate compile times
   cannot be linked to each other
   Copyright (C) 1998, 1999, 2001, 2002, 2005  Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath 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 GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package java.lang;

/**
 * Subclasses of <code>LinkageError</code> are thrown to indicate that two
 * classes which were compatible at separate compilation times cannot be
 * linked to one another.
 *
 * @author Brian Jones
 * @author Tom Tromey (tromey@cygnus.com)
 * @status updated to 1.4
 */
public class LinkageError extends Error
{
  /**
   * Compatible with JDK 1.0+.
   */
  private static final long serialVersionUID = 3579600108157160122L;

  /**
   * Create an error without a message.
   */
  public LinkageError()
  {
  }

  /**
   * Create an error with a message.
   *
   * @param s the message
   */
  public LinkageError(String s)
  {
    super(s);
  }
}
ion value='revert-88024-users/minglotus-6/spr/summary2'>revert-88024-users/minglotus-6/spr/summary2 Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/lit.cfg.py
AgeCommit message (Expand)AuthorFilesLines
2024-11-12[lldb][test] Fix remote Shell tests failures on Windows host (#115716)Vladislav Dzhidzhoev1-0/+3
2024-11-06[lldb] Set MallocNanoZone for all sanitizers when running testsJonas Devlieghere1-6/+2
2024-10-31[lldb] Remove lldb-repro utilityJonas Devlieghere1-9/+0
2024-10-07[lldb][test] Support remote run of Shell tests (#95986)Vladislav Dzhidzhoev1-1/+8
2024-06-26[lldb] fix(lldb/**.py): fix comparison to None (#94017)Eisuke Kawashima1-1/+1
2024-04-15[lldb][lit] Guard MallocNanoZone envvar in shell tests (#88824)Chelsea Cassanova1-4/+8
2024-04-11Reland "[lldb][lit] Add MallocNanoZone envvar to Darwin ASan builds" … (#88...Chelsea Cassanova1-0/+2
2024-04-11Revert "[lldb][lit] Add MallocNanoZone envvar to Darwin ASan builds" (#88436)Chelsea Cassanova1-2/+0
2024-04-11[lldb][lit] Add MallocNanoZone envvar to Darwin ASan builds (#88431)Chelsea Cassanova1-0/+2
2024-03-07[lldb] Disable shell tests affected by ld_new bug (#84246)Dave Lee1-0/+16
2023-08-07[lldb] Make TSan errors fatal when running the test suiteJonas Devlieghere1-0/+4
2023-05-25[NFC][Py Reformat] Reformat python files in lldbJonas Devlieghere1-47/+63
2023-05-17[lldb][gnustep] Add basic test and infrastructure for GNUstep ObjC runtimeStefan Gränitz1-1/+9
2022-10-14[LLDB] Only run lldb-server Shell tests if it gets builtAlex Langford1-0/+3
2022-06-09[lldb] Set COFF module ABI from default triple and make it an optionAlvin Wong1-0/+6
2022-04-29[lldb] Use shutil.which instead of distutils find_executableDavid Spickett1-2/+1
2022-01-07[lldb] Use lit_config.note to print module cache messageJonas Devlieghere1-1/+1
2021-08-09[lldb] [test] Skip Expr/nodefaultlib.cpp test if LD_PRELOAD Is usedMichał Górny1-0/+3
2021-03-31[lldb] Remove references to LLDB_CAPTURE_REPRODUCERJonas Devlieghere1-1/+0
2021-03-22[lldb] Fix test_exec_root of API testsPavel Labath1-1/+1
2021-03-09[lldb] Propagate XDG_CACHE_HOME environment variable to testsJonas Devlieghere1-0/+1
2021-03-09[lldb] Use lit.with_system_environment to propagate env variablesJonas Devlieghere1-7/+8
2021-01-07[lldb] [debugserver] Add stN aliases for stmmN for compatibilityMichał Górny1-0/+3
2020-11-05[lldb] Enable FreeBSDRemote plugin by default and update test statusMichał Górny1-1/+1
2020-10-08[lldb] Initial version of FreeBSD remote process pluginMichał Górny1-0/+3
2020-05-28[lldb/Reproducers] Add top-level-target check-lldb-reproducersJonas Devlieghere1-1/+1
2020-04-14[lldb/Test] s/lldb-repo/lldb-repro/ (NFC)Jonas Devlieghere1-1/+1
2020-01-22[lldb/Test] Use lit's capabilities to skip lldb-repro tests.Jonas Devlieghere1-1/+1
2020-01-20[lldb/Util] Add a utility to run transparently capture and replay tests.Jonas Devlieghere1-2/+10
2019-12-20[lldb/Lua] Implement a Simple Lua Script Interpreter PrototypeJonas Devlieghere1-0/+3
2019-12-13[lldb/CMake] Rename LLDB_DISABLE_PYTHON to LLDB_ENABLE_PYTHONJonas Devlieghere1-1/+1
2019-12-04[lldb/Reproducers] Propagate LLDB_CAPTURE_REPRODUCER to the test suiteJonas Devlieghere1-0/+4
2019-11-25[lldb] [Process/NetBSD] Copy watchpoints to newly-created threadsMichał Górny1-0/+15
2019-10-10[test] Add timeout to API tests.Jonas Devlieghere1-2/+0
2019-10-10[test] Use a different module cache for Shell and API tests.Jonas Devlieghere1-3/+3
2019-10-09Re-land "[test] Split LLDB tests into API, Shell & Unit"Jonas Devlieghere1-0/+107
2019-10-09Revert [test] Split LLDB tests into API, Shell & UnitAdrian Prantl1-107/+0
2019-10-09[test] Split LLDB tests into API, Shell & UnitJonas Devlieghere1-0/+107