class Async::Container::SetupError

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

def initialize(container)

@parameter container [Generic] The container that failed.

Create a new setup error.
def initialize(container)
	super("Could not create container!")
	
	@container = container
end