Exception: Yoker::DockerNotAvailableError
- Inherits:
-
MissingDependencyError
- Object
- StandardError
- Error
- MissingDependencyError
- Yoker::DockerNotAvailableError
- Defined in:
- lib/yoker/errors.rb
Overview
Raised when Docker is not running or accessible
Instance Method Summary collapse
-
#initialize ⇒ DockerNotAvailableError
constructor
A new instance of DockerNotAvailableError.
Constructor Details
#initialize ⇒ DockerNotAvailableError
Returns a new instance of DockerNotAvailableError.
25 26 27 28 29 30 |
# File 'lib/yoker/errors.rb', line 25 def initialize super( "Docker", "Please ensure Docker is installed and running. Visit https://docs.docker.com/get-docker/" ) end |