Exception: JenkinsApi::Exceptions::NothingSubmitted
- Inherits:
-
ApiException
- Object
- RuntimeError
- ApiException
- JenkinsApi::Exceptions::NothingSubmitted
- Defined in:
- lib/jenkins_api_client/exceptions.rb
Overview
This exception class handles cases where parameters are expected but not provided.
Instance Method Summary (collapse)
-
- (NothingSubmitted) initialize(logger, message = "", log_level = Logger::ERROR)
constructor
A new instance of NothingSubmitted.
Constructor Details
- (NothingSubmitted) initialize(logger, message = "", log_level = Logger::ERROR)
Returns a new instance of NothingSubmitted
43 44 45 46 |
# File 'lib/jenkins_api_client/exceptions.rb', line 43 def initialize(logger, = "", log_level = Logger::ERROR) = "Nothing is submitted." if .empty? super(logger, ) end |