Skip to content

Instantly share code, notes, and snippets.

@BalicantaYao
Created May 7, 2017 07:05
Show Gist options
  • Save BalicantaYao/5078550fd402e9bf3b6cdd270448a7cb to your computer and use it in GitHub Desktop.
Save BalicantaYao/5078550fd402e9bf3b6cdd270448a7cb to your computer and use it in GitHub Desktop.
class Base{
public void foo() throws FileNotFoundException {
thorw new FileNotFoundException();
}
}
class OverideTest extends Base{
public void foo() throws IOException{
throw new IOException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment