class JetBlack::NonExistentFileError

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 25
    def initialize(raw_path, expanded_path)
      @raw_path = raw_path
      @expanded_path = expanded_path

      super <<~MSG
        Please create the file before trying to append content.
        Raw path: '#{raw_path}'
        Expanded path: '#{expanded_path}'
      MSG
    end