Skip to content

Instantly share code, notes, and snippets.

@irof
Created October 2, 2016 04:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save irof/0c8207a05c213290a7f487b7b8af1b71 to your computer and use it in GitHub Desktop.
Save irof/0c8207a05c213290a7f487b7b8af1b71 to your computer and use it in GitHub Desktop.
同じ例外なげれるのね
class Hoge extends Exception {
void method() throws Hoge, Hoge, Hoge {
}
}
Compiled from "Hoge.java"
class Hoge extends java.lang.Exception {
Hoge();
void method() throws Hoge, Hoge, Hoge;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment