Exception: JenkinsApi::Exceptions::InternelServerErrorException
- Inherits:
-
ApiException
- Object
- RuntimeError
- ApiException
- JenkinsApi::Exceptions::InternelServerErrorException
- Defined in:
- lib/jenkins_api_client/exceptions.rb
Overview
This exception class handles cases where the Jenkins API returns with a 500 Internel Server Error.
Instance Method Summary collapse
-
#initialize(message = "") ⇒ InternelServerErrorException
constructor
A new instance of InternelServerErrorException.
Constructor Details
#initialize(message = "") ⇒ InternelServerErrorException
Returns a new instance of InternelServerErrorException.
77 78 79 80 81 82 |
# File 'lib/jenkins_api_client/exceptions.rb', line 77 def initialize( = "") super("Internel Server Error. Perhaps the in-memory configuration of" + " Jenkins is different from the disk configuration." + " Please try to reload the configuration #{}" ) end |