Sha256: 240477e012d395ad2b0db9bf91a7b89b83eee5fdaf0a3a5579132dfb3cac5fdb

Contents?: true

Size: 926 Bytes

Versions: 10

Compression:

Stored size: 926 Bytes

Contents

# frozen_string_literal: true

module QiitaTrend
  module Error
    # キャッシュファイルが存在しない時に発生するエラークラス
    # キャッシュファイルからトレンドを取得する時、存在しないキャッシュファイルを指定した時に発生する
    class NotExistsCacheError < ::QiitaTrend::Error::SyntaxError
      # @return [Cache] Cacheクラス
      attr_reader :cache

      # コンストラクタ
      #
      # @param [Cache] cache キャッシュクラス
      def initialize(cache)
        super
        @cache = cache
      end

      # エラーメッセージを返します
      # 読み込もうとしたキャッシュファイルのフルパス含んだ形でメッセージを返します
      #
      # @return [String] エラーメッセージ
      def message
        "Does not exist cache file #{@cache.full_path}"
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
qiita_trend-0.5.6 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.5.5 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.5.4 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.5.3 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.5.2 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.5.1 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.5.0 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.4.9 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.4.8 lib/qiita_trend/error/not_exists_cache_error.rb
qiita_trend-0.4.7 lib/qiita_trend/error/not_exists_cache_error.rb