Class: Docker::Template::Error::ImageNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/docker/template/error.rb

Overview

Instance Method Summary collapse

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