Class Stella::HTTPError

  1. lib/stella.rb
Parent: StellaError

Methods

public class

  1. new

public instance

  1. message

Attributes

status [R]

Public class methods

new (status)
[show source]
# File lib/stella.rb, line 98
    def initialize(status)
      @status = status
    end

Public instance methods

message ()
[show source]
# File lib/stella.rb, line 101
    def message
      "#{status} error"
    end