class Issue::Error

Attributes

message[R]
status[R]

Public Class Methods

new(status, msg) click to toggle source

Initialize Issue::Error object with: status: html status code msg: message to send back in response

# File lib/issue/error.rb, line 9
def initialize(status, msg)
  @status = status
  @message = msg
end