Skip to content

Instantly share code, notes, and snippets.

/sd.java Secret

Created July 24, 2017 16:09
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 anonymous/cb9e7696b5ab0415e340eae37a694bf5 to your computer and use it in GitHub Desktop.
Save anonymous/cb9e7696b5ab0415e340eae37a694bf5 to your computer and use it in GitHub Desktop.
public void download() throws SomeException
{
try
{
//code
}
catch (SomeException e)
{
//code
}
}
//Some other class
thing.download(); //tells me I have to deal with the SomeException
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment