Skip to content

Instantly share code, notes, and snippets.

@andypalmer
Created February 10, 2016 19:00
Show Gist options
  • Save andypalmer/574b9fd8977af9264810 to your computer and use it in GitHub Desktop.
Save andypalmer/574b9fd8977af9264810 to your computer and use it in GitHub Desktop.
public Result someMethod() throws IUsedToReturnNullPleaseFixMe {
Result result = someMethodIDontControl();
if(null == result) {throw new IUsedToReturnNullPleaseFixMe();}
// This is temporary. The right thing _might_ be an exception, but we’ll work that out later
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment