Sha256: 062bd413e0930577504853340d5e637aa6d28fcb552a8d5aedee58661922ba4a

Contents?: true

Size: 459 Bytes

Versions: 1

Compression:

Stored size: 459 Bytes

Contents

########################################################################################################################
# Stores warning information
########################################################################################################################

require_relative 'located_info'

module Rproof
  class Warning < LocatedInfo
    def initialize(message)
      super()
      @message = message
    end
    attr_reader :message
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rproof-0.0.1 lib/rproof/warning.rb