class HMap::MagicError

Raised when a file's magic bytes are not valid HMap magic.

Public Class Methods

new(magic) click to toggle source

@param num [Integer] the unknown number

Calls superclass method
# File lib/cocoapods-hmap/exceptions.rb, line 22
def initialize(magic)
  super format('Unrecognized HMap magic: 0x%02<magic>x', magic: magic)
end