Sha256: 8be7a2d13fcb6a6804e8e231c32644147840c6ae713c653680a47199f82a0059
Contents?: true
Size: 283 Bytes
Versions: 1
Compression:
Stored size: 283 Bytes
Contents
module SimpleLogic class ParseError < StandardError attr_reader :offset def initialize(offset) @offset = offset end end class UndefinedVariableError < StandardError attr_reader :offset def initialize(offset) @offset = offset end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simple_logic-0.0.1 | lib/simple_logic/errors.rb |