Exception: GitHub::API::ValidationFailedError Private

Inherits:
Error
  • Object
show all
Defined in:
utils/github/api.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Error when the API returns a validation error.

Instance Attribute Summary

Attributes inherited from Error

#github_message

Instance Method Summary collapse

Methods included from Utils::Output::Mixin

#odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled

Constructor Details

#initialize(github_message, errors) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:



141
142
143
144
145
# File 'utils/github/api.rb', line 141

def initialize(github_message, errors)
  github_message = "#{github_message}: #{errors}" unless errors.empty?

  super(github_message, github_message)
end