class Async::Container::SetupError
Represents the error which occured when a container failed to start up correctly.
Attributes
container[R]
The container that failed.
Public Class Methods
new(container)
click to toggle source
Calls superclass method
# File lib/async/container/error.rb, line 49 def initialize(container) super("Could not create container!") @container = container end