1*2167191dSAndroid Build Coastguard Worker /* 2*2167191dSAndroid Build Coastguard Worker * Copyright 2020 The JSpecify Authors. 3*2167191dSAndroid Build Coastguard Worker * 4*2167191dSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 5*2167191dSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 6*2167191dSAndroid Build Coastguard Worker * You may obtain a copy of the License at 7*2167191dSAndroid Build Coastguard Worker * 8*2167191dSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 9*2167191dSAndroid Build Coastguard Worker * 10*2167191dSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 11*2167191dSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 12*2167191dSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*2167191dSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 14*2167191dSAndroid Build Coastguard Worker * limitations under the License. 15*2167191dSAndroid Build Coastguard Worker */ 16*2167191dSAndroid Build Coastguard Worker import org.jspecify.annotations.NullMarked; 17*2167191dSAndroid Build Coastguard Worker 18*2167191dSAndroid Build Coastguard Worker @NullMarked 19*2167191dSAndroid Build Coastguard Worker abstract class Catch { x()20*2167191dSAndroid Build Coastguard Worker void x() { 21*2167191dSAndroid Build Coastguard Worker try { 22*2167191dSAndroid Build Coastguard Worker throw new Exception(); 23*2167191dSAndroid Build Coastguard Worker } catch (Exception e) { 24*2167191dSAndroid Build Coastguard Worker e.printStackTrace(); 25*2167191dSAndroid Build Coastguard Worker // TODO(cpovirk): Edit README to permit referencing java.lang.Exception. Or remove this. 26*2167191dSAndroid Build Coastguard Worker } 27*2167191dSAndroid Build Coastguard Worker 28*2167191dSAndroid Build Coastguard Worker try { 29*2167191dSAndroid Build Coastguard Worker doWork(); 30*2167191dSAndroid Build Coastguard Worker } catch (SomeError | SomeRuntimeException e) { 31*2167191dSAndroid Build Coastguard Worker } catch (Throwable e) { 32*2167191dSAndroid Build Coastguard Worker e.printStackTrace(); 33*2167191dSAndroid Build Coastguard Worker } 34*2167191dSAndroid Build Coastguard Worker 35*2167191dSAndroid Build Coastguard Worker try { 36*2167191dSAndroid Build Coastguard Worker throw new RuntimeException(); 37*2167191dSAndroid Build Coastguard Worker } catch (RuntimeException | Error e) { 38*2167191dSAndroid Build Coastguard Worker handleException(e); 39*2167191dSAndroid Build Coastguard Worker } 40*2167191dSAndroid Build Coastguard Worker } 41*2167191dSAndroid Build Coastguard Worker handleException(Throwable t)42*2167191dSAndroid Build Coastguard Worker abstract void handleException(Throwable t); 43*2167191dSAndroid Build Coastguard Worker doWork()44*2167191dSAndroid Build Coastguard Worker abstract void doWork() throws SomeException; 45*2167191dSAndroid Build Coastguard Worker 46*2167191dSAndroid Build Coastguard Worker static class SomeException extends Exception {} 47*2167191dSAndroid Build Coastguard Worker 48*2167191dSAndroid Build Coastguard Worker static class SomeRuntimeException extends RuntimeException {} 49*2167191dSAndroid Build Coastguard Worker 50*2167191dSAndroid Build Coastguard Worker static class SomeError extends Error {} 51*2167191dSAndroid Build Coastguard Worker } 52