class T2Server::RunNotFoundError

Raised when the run that is being operated on cannot be found. If the expectation is that the run exists then it could have been destroyed by a timeout or another user.

Attributes

identifier[R]

The identifier of the run that was not found on the server.

Public Class Methods

new(id) click to toggle source

Create a new RunNotFoundError with the specified identifier.

# File lib/t2-server/exceptions.rb, line 104
def initialize(id)
  @identifier = id
  super "Could not find run #{@identifier}"
end