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