class RemoveBg::FileError

Attributes

file_path[R]

Public Class Methods

new(message, file_path) click to toggle source
Calls superclass method
# File lib/remove_bg/error.rb, line 37
def initialize(message, file_path)
  @file_path = file_path
  super(message)
end