lib/lookbook/support/errors/parser_error.rb



module Lookbook
  class ParserError < Error
    def initialize(msg = nil, scope: "parser", **kwargs)
      super(msg, scope: scope, **kwargs)
    end
  end
end