File: errors.rb

package info (click to toggle)
ruby-simple-oauth 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: ruby: 1,722; makefile: 4; sh: 4
file content (7 lines) | stat: -rw-r--r-- 241 bytes parent folder | download
1
2
3
4
5
6
7
module SimpleOAuth
  # Error raised when parsing a malformed OAuth Authorization header
  class ParseError < StandardError; end

  # Error raised when invalid options are passed to Header
  class InvalidOptionsError < StandardError; end
end