class IDL::ParseError

def initialize(msg, positions)

def initialize(msg, positions)
  super(msg)
  @positions = positions
end

def inspect

def inspect
  puts "#{self.class.name}: #{message}"
  @positions.each { |pos|
    print '    '
    puts pos
  }
  nil
end