blob: f563cab3b3c1192242ea1bfd4bf7e6dd0b1e2d29 [file] [log] [blame]
package com.siyeh.igtest.errorhandling.new_exception_without_arguments;
class NewExceptionWithoutArguments {
void foo() {
throw new RuntimeException();
}
void bar() {
throw new MyException();
}
}
class MyException extends RuntimeException {
}