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
127 def initialize(path)
128   @path = path
129   super "Could not find attribute at #{@path}"
130 end