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.



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

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