# encoding: utf-8 module Github #:nodoc # Raised when Github returns the HTTP status code 500 module Error class InternalServerError < GithubError def initialize(env) super(env) end end end # Error end # Github