Exception: SDM::InternalError

Inherits:
RPCError
  • Object
show all
Defined in:
lib/errors/errors.rb

Overview

InternalError is used to specify an internal system error

Instance Attribute Summary

Attributes inherited from RPCError

#code

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ InternalError

Returns a new instance of InternalError.



73
74
75
# File 'lib/errors/errors.rb', line 73

def initialize(msg)
  super(msg, 13)
end