Exception: Kerbi::ValuesFileNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/main/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(fname_expr:, root:) ⇒ ValuesFileNotFoundError

Returns a new instance of ValuesFileNotFoundError.



68
69
70
71
# File 'lib/main/errors.rb', line 68

def initialize(fname_expr: , root: )
  msg = "Could not resolve values file '#{fname_expr}' in #{root}"
  super(msg)
end