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.

# File lib/t2-server/exceptions.rb, line 128
def initialize
  super "The server is already running its configured limit of " +
    "concurrent workflows."
end