PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/highline-2.1.0/lib/highline/ |
| Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64 IP: 159.198.77.92 |
| Dir : //opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/highline-2.1.0/lib/highline/custom_errors.rb |
# encoding: utf-8
class HighLine
# Internal HighLine errors.
module CustomErrors
# An error that responds to :explanation_key
class ExplainableError < StandardError
# Explanation key as Symbol or nil. Used to
# select the proper error message to be displayed.
# @return [nil, Symbol] explanation key to get the
# proper error message.
def explanation_key
nil
end
end
# Bare Question error
class QuestionError < ExplainableError
# (see ExplainableError#explanation_key)
def explanation_key
nil
end
end
# Invalid Question error
class NotValidQuestionError < ExplainableError
# (see ExplainableError#explanation_key)
def explanation_key
:not_valid
end
end
# Out of Range Question error
class NotInRangeQuestionError < ExplainableError
# (see ExplainableError#explanation_key)
def explanation_key
:not_in_range
end
end
# Unconfirmed Question error
class NoConfirmationQuestionError < ExplainableError
# (see ExplainableError#explanation_key)
def explanation_key
nil
end
end
# Unavailable auto complete error
class NoAutoCompleteMatch < ExplainableError
# (see ExplainableError#explanation_key)
def explanation_key
:no_completion
end
end
end
end