Created
October 2, 2016 04:22
-
-
Save irof/0c8207a05c213290a7f487b7b8af1b71 to your computer and use it in GitHub Desktop.
同じ例外なげれるのね
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Hoge extends Exception { | |
void method() throws Hoge, Hoge, Hoge { | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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