Sha256: a6a06572c7dd40360445c9772ebfbb144681f7aaa17a9bdfcd24582e48d11993

Contents?: true

Size: 251 Bytes

Versions: 1

Compression:

Stored size: 251 Bytes

Contents

module EFIValidate
  class EFIValidationError
    attr_reader :row, :data, :hash

    def initialize(row, data, hash)
      @row = row
      @data = data
      @hash = hash
    end

    def to_s
      "Expected #{row} to be #{@hash}"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
efivalidate-1.2.0 lib/efivalidate/efi_validation_error.rb