Exception: Docker::API::Error

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

Overview

This class represents a generic error.

Instance Method Summary collapse

Constructor Details

#initialize(msg = "Error without specific message") ⇒ Error

Returns a new instance of Error.



27
28
29
# File 'lib/docker/api/error.rb', line 27

def initialize msg = "Error without specific message"
  super(msg)
end