From a669cd4957ae08aceae647c351f204b222967e51 Mon Sep 17 00:00:00 2001 From: Ivan Hetman Date: Sun, 24 Sep 2023 19:24:47 +0300 Subject: [PATCH] classlib: add MatchException needed for exhaustive switch (#757) --- .../classlib/java/lang/TMatchException.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 classlib/src/main/java/org/teavm/classlib/java/lang/TMatchException.java diff --git a/classlib/src/main/java/org/teavm/classlib/java/lang/TMatchException.java b/classlib/src/main/java/org/teavm/classlib/java/lang/TMatchException.java new file mode 100644 index 000000000..18f34d232 --- /dev/null +++ b/classlib/src/main/java/org/teavm/classlib/java/lang/TMatchException.java @@ -0,0 +1,22 @@ +/* + * Copyright 2023 ihromant. + * + * 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 final class TMatchException extends TRuntimeException { + public TMatchException(String message, TThrowable cause) { + super(message, cause); + } +}