class Aws::Api::Docs::Builder

def errors_docstring

def errors_docstring
  path = "#{DOC_SRC}/services/#{@svc_name}/errors.md"
  path = "#{DOC_SRC}/services/default/errors.md" unless File.exist?(path)
  template = read(path)
  svc_name = @svc_name
  api = @api
  full_name = @full_name
  known_errors = @error_names
  ERB.new(template).result(binding)
end