Sha256: 898f0248c47ddbb42abe7d4b6c5fc0e5031f267ecdc7ad7c230899374ff625d8

Contents?: true

Size: 194 Bytes

Versions: 2

Compression:

Stored size: 194 Bytes

Contents

module FootStats
  class ErrorResponse
    attr_reader :message

    def initialize(message)
      @message = message
    end

    def ==(other)
      @message == other.message
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
foot_stats-0.1.0 lib/foot_stats/error_response.rb
foot_stats-0.0.1 lib/foot_stats/error_response.rb