class Blufin::YmlError

Attributes

field[RW]
file[RW]
message[RW]
section[RW]
type[RW]

Public Class Methods

new(type, file, section, field, message) click to toggle source
# File lib/core/error_handling/yml_error.rb, line 7
def initialize(type, file, section, field, message)

    message = [message] if message.is_a?(String)

    @type    = type
    @file    = file
    @section = section
    @field   = field
    @message = message

end