blob: a87b6328a5fdf2b7c080847b7abd89103a2c2a82 [file] [log] [blame]
package com.siyeh.igtest.errorhandling.throws_runtime_exception;
public class ThrowsRuntimeException {
void one() throws Throwable {}
void two() throws RuntimeException {}
void three() throws UnsupportedOperationException {}
void four() throws Exception {}
}