Sha256: 13ba5fedda02b2fe02e9c01787ff665974deb8a1ea7ce4acf44579e55928bc27
Contents?: true
Size: 319 Bytes
Versions: 16
Compression:
Stored size: 319 Bytes
Contents
# frozen_string_literal: true class Language class Parser class Str class NotFound < Interuption def initialize(parser, string) @parser = parser @string = string end def message "#{@string} not found\n#{super}" end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems