Skip to content

Instantly share code, notes, and snippets.

@logicbomb
Created November 30, 2012 17:15
Show Gist options
  • Save logicbomb/4177099 to your computer and use it in GitHub Desktop.
Save logicbomb/4177099 to your computer and use it in GitHub Desktop.
public class TestModule : NancyModule
{
public TestModule()
{
Get["/error-handled"] = _ => {
// the error handler is called
var x = 0;
return (89/x).ToString();
};
Get["error-unhandled"] = _ => View["horked"];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment