8 lines
165 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-03-14 13:50:56 +01:00
public m() {
2024-02-01 11:58:08 +01:00
throw new RuntimeException("Some Exception");
}
}