class Regexp::Scanner::PrematureEndError

Unexpected end of pattern

Public Class Methods

new(where = '') click to toggle source
Calls superclass method
# File lib/regexp_parser/scanner/errors/premature_end_error.rb, line 4
def initialize(where = '')
  super "Premature end of pattern at #{where}"
end