class Teamocil::Error::InvalidYAMLLayout

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/teamocil/error/invalid_yaml_layout.rb, line 8
def to_s
  "There was a YAML error when parsing `#{@path}`"
end