class Teamocil::Error::LayoutNotFound

Public Class Methods

new(path) click to toggle source
# File lib/teamocil/error/layout_not_found.rb, line 4
def initialize(path)
  @path = path
end

Public Instance Methods

to_s() click to toggle source
# File lib/teamocil/error/layout_not_found.rb, line 8
def to_s
  "Cannot find a layout at `#{@path}`"
end