class T2Server::AttributeNotFoundError

Indicates that the attribute that the user is trying to read/change does not exist. The attribute could be a server or run attribute.

Attributes

path[R]

The path of the attribute that was not found on the server.

Public Class Methods

new(path) click to toggle source

Create a new AttributeNotFoundError with the path to the erroneous attribute.

Calls superclass method
# File lib/t2-server/exceptions.rb, line 127
def initialize(path)
  @path = path
  super "Could not find attribute at #{@path}"
end