class RemoveBg::FileMissingError

Public Class Methods

new(file_path) click to toggle source
Calls superclass method RemoveBg::FileError::new
# File lib/remove_bg/error.rb, line 44
def initialize(file_path)
  super("The file doesn't exist: '#{file_path}'", file_path)
end