您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ExceptionsOnInters.java 451B

1234567891011121314151617181920212223
  1. // from Bug 29106
  2. public class ExceptionsOnInters {
  3. public static void main(String args[]) {
  4. try {
  5. ExceptionsOnInters.bomb();
  6. } catch (BombException e) {
  7. System.err.println(e);
  8. }
  9. }
  10. }
  11. aspect Bomb {
  12. public static void ExceptionsOnInters.bomb() throws BombException {
  13. throw new BombException("KABOOM");
  14. }
  15. }
  16. class BombException extends Exception {
  17. public BombException(String message) {
  18. super(message);
  19. }
  20. }