Exception: Rbnotes::ProgramAbortError

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

Overview

An error raised when a external program such an editor was aborted during its execution.

Instance Method Summary collapse

Constructor Details

#initialize(cmdline) ⇒ ProgramAbortError

Returns a new instance of ProgramAbortError.



57
58
59
# File 'lib/rbnotes/error.rb', line 57

def initialize(cmdline)
  super(ErrMsg::PROGRAM_ABORT % cmdline.join(" "))
end