class Render::Errors::InvalidType

Attributes

name[RW]

Public Class Methods

new(name) click to toggle source
# File lib/render/errors.rb, line 6
def initialize(name)
  self.name = name
end

Public Instance Methods

to_s() click to toggle source
# File lib/render/errors.rb, line 10
def to_s
  "Cannot parse type: #{name}."
end