class Aws::Templates::Exception::ViewNotFound
View was not found for the object
View map was checked and there is no appropriate view class for the object class found in the registry.
Attributes
instance[R]
Instance of the object class render lookup was performed for
Public Class Methods
new(target_instance)
click to toggle source
Calls superclass method
# File lib/aws/templates/exception/view_not_found.rb, line 19 def initialize(target_instance) super() @instance = target_instance end
Public Instance Methods
message()
click to toggle source
# File lib/aws/templates/exception/view_not_found.rb, line 15 def message "Can't find any view for #{instance.inspect} of class #{instance.class}" end