class JetBlack::InvalidPathError
Attributes
expanded_path[R]
raw_path[R]
Public Class Methods
new(raw_path, expanded_path)
click to toggle source
Calls superclass method
# File lib/jet_black/errors.rb, line 10 def initialize(raw_path, expanded_path) @raw_path = raw_path @expanded_path = expanded_path super <<~MSG Please specify a relative path within the temp dir. Raw path: '#{raw_path}' Expanded path: '#{expanded_path}' MSG end