class T2Server::ServerAtCapacityError

The server is at capacity and cannot accept anymore runs at this time.

Public Class Methods

new() click to toggle source

Create a new ServerAtCapacityError.

Calls superclass method
    # File lib/t2-server/exceptions.rb
136 def initialize
137   super "The server is already running its configured limit of " +
138     "concurrent workflows."
139 end