class LeafNotFoundError

Public Class Methods

new(leaf) click to toggle source
Calls superclass method
# File lib/hashtastic/merkle_tree/leaf_not_found_error.rb, line 4
def initialize(leaf)
  super("leaf does not exist in merkle-tree: #{leaf}")
end