class Rookout::Exceptions::RookWriteAttributeNotSupported

Public Class Methods

new(namespace_type, attribute) click to toggle source
Calls superclass method Rookout::Exceptions::ToolException::new
# File lib/rookout/exceptions.rb, line 45
def initialize namespace_type, attribute
  super "Namespace #{namespace_type} does not support write",
        { namespace: namespace_type, attribute: attribute }
end