8 lines
158 B
Plaintext
Raw Normal View History

2024-02-01 11:58:08 +01:00
import java.lang.String;
import java.lang.RuntimeException;
public class Exceptions {
2024-02-01 11:58:08 +01:00
m() {
throw new RuntimeException("Some Exception");
}
}