class Sane
class Error < StandardError
attr_reader :status
def initialize(message, status)
super(message)
@status = status
end