Exception: Pione::System::PioneBug

Inherits:
SystemError
  • Object
show all
Defined in:
lib/pione/system/system-exception.rb

Overview

PioneBug is an error that is caused by PIONE's bug.

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ PioneBug

Returns a new instance of PioneBug.



7
8
9
# File 'lib/pione/system/system-exception.rb', line 7

def initialize(message)
  @message = message
end

Instance Method Details

#messageObject



11
12
13
# File 'lib/pione/system/system-exception.rb', line 11

def message
  "[PIONE BUG] " + @message
end