Sha256: 886d22b38885a59094a8fb2455041f73d9e51a5ccef138063e39942bd73559e4

Contents?: true

Size: 319 Bytes

Versions: 1

Compression:

Stored size: 319 Bytes

Contents

# frozen_string_literal: true

module QiitaTrend
  module Error
    class NotExistsCacheError < ::QiitaTrend::Error::SyntaxError
      attr_reader :cache

      def initialize(cache)
        @cache = cache
      end

      def message
        "Does not exist cache file #{@cache.full_path}"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
qiita_trend-0.2.8 lib/qiita_trend/error/not_exists_cache_error.rb