class Sass::Importers::DeprecatedPath

def find(*args)

Other tags:
    See: Sass::Importers::Base#find -
def find(*args)
  found = super
  if found && !@warning_given
    @warning_given = true
    Sass::Util.sass_warn deprecation_warning
  end
  found
end