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