Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class TestVyjimka {
- public static void main(String[] args) {
- if (true) {
- try {
- throw new WTFException();
- } catch (WTFException e) {
- e.printStackTrace();
- }
- }
- }
- }
- public class WTFException extends Exception {
- public WTFException() {
- super();
- }
- public WTFException(String message) {
- super(message);
- }
- public WTFException(String message, Throwable cause) {
- super(message, cause);
- }
- public WTFException(Throwable cause) {
- super(cause);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment