Exception: Rbnotes::NoEditorError

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

Overview

An error raised if no external editor is available to edit a note, even “nano” or “vi”.

Instance Method Summary collapse

Constructor Details

#initialize(names) ⇒ NoEditorError

Returns a new instance of NoEditorError.



47
48
49
# File 'lib/rbnotes/error.rb', line 47

def initialize(names)
  super(ErrMsg::NO_EDITOR % names.to_s)
end