class Omnibus::ChecksumMissing

Public Class Methods

new(software) click to toggle source
Calls superclass method
# File lib/omnibus/exceptions.rb, line 218
    def initialize(software)
      super <<~EOH
        Verification for #{software.name} failed due to a missing checksum.

        This added security check is used to prevent MITM attacks when downloading the
        remote file. You must specify a checksum for each version of software downloaded
        from a remote location.
      EOH
    end