Class: Docker::Template::Error::ImageNotFound
- Inherits:
-
StandardError
- Object
- Docker::Template::Error::ImageNotFound
- Defined in:
- lib/docker/template/error.rb
Overview
–
Instance Method Summary collapse
-
#initialize(image) ⇒ ImageNotFound
constructor
A new instance of ImageNotFound.
Constructor Details
#initialize(image) ⇒ ImageNotFound
Returns a new instance of ImageNotFound.
90 91 92 93 94 |
# File 'lib/docker/template/error.rb', line 90 def initialize(image) super "Unable to find the image #{ image }" end |