Exception: ModpackLocalizer::PathNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/modpack_localizer/util/error.rb

Overview

パスが見つからない場合のエラークラス

Constant Summary collapse

DOES_NOT_EXIST =

ヒアドキュメントを使うと、先頭と末尾に空行が入る エラーメッセージも変更しやすいのでこうしている

<<~TEXT.freeze
  \n
  Path does not exist: %s
TEXT

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ ModpackLocalizer::PathNotFoundError

Parameters:

  • path (String)

    パス



16
17
18
# File 'lib/modpack_localizer/util/error.rb', line 16

def initialize(path)
  super(format(DOES_NOT_EXIST, path))
end