Async::ContainerSourceAsyncContainerSetupError

class SetupError

Represents the error which occured when a container failed to start up correctly.

Definitions

def initialize(container)

Create a new setup error.

Signature

parameter container Generic

The container that failed.

Implementation

def initialize(container)
	super("Could not create container!")
	
	@container = container
end

attr :container

Signature

attribute Generic

The container that failed.