Skip to content

Instantly share code, notes, and snippets.

@sr
Created August 28, 2008 09:38
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 sr/7692 to your computer and use it in GitHub Desktop.
Save sr/7692 to your computer and use it in GitHub Desktop.
require File.dirname(__FILE__) + '/code/git-wiki/vendor/sinatra/lib/sinatra'
class Foo < Exception;
error RuntimeError do
"hey!"
end
error Foo do
"fooooo"
end
get '/' do
raise Foo
"bla"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment