class Mat::HTTP::Exception

Attributes

message[R]
response[RW]

Public Class Methods

new(response = nil) click to toggle source
# File lib/mat/http.rb, line 39
def initialize(response = nil)
  @response = response
  @message  = response.message if response
end