Exception: SDM::AlreadyExistsError

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

Overview

AlreadyExistsError is used when an entity already exists in the system

Instance Attribute Summary

Attributes inherited from RPCError

#code

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ AlreadyExistsError

Returns a new instance of AlreadyExistsError.



38
39
40
# File 'lib/errors/errors.rb', line 38

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