From e6c71fa1065a952ab85a309a8a9e54004926565c Mon Sep 17 00:00:00 2001 From: Alexey Andreev Date: Sun, 10 Sep 2023 18:46:33 +0200 Subject: [PATCH] classlib: add ThreadDeath class Fix #733 --- .../classlib/java/lang/TThreadDeath.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 classlib/src/main/java/org/teavm/classlib/java/lang/TThreadDeath.java diff --git a/classlib/src/main/java/org/teavm/classlib/java/lang/TThreadDeath.java b/classlib/src/main/java/org/teavm/classlib/java/lang/TThreadDeath.java new file mode 100644 index 000000000..4b0a2aaf1 --- /dev/null +++ b/classlib/src/main/java/org/teavm/classlib/java/lang/TThreadDeath.java @@ -0,0 +1,19 @@ +/* + * Copyright 2023 Alexey Andreev. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.teavm.classlib.java.lang; + +public class TThreadDeath extends Error { +}