class Bosh::Cli::JobPropertyValidator::TemplateError
Attributes
exception[R]
job[R]
line[R]
template_path[R]
Public Class Methods
new(job, template_path, exception)
click to toggle source
@param [Bosh::Cli::Resources::Job] job @param [String] template_path
@param [Exception] exception
# File lib/cli/job_property_validator.rb, line 133 def initialize(job, template_path, exception) @job = job @template_path = template_path @exception = exception @line = exception.backtrace.first.split(":")[1] end