class Kybus::Storage::Exceptions::ObjectAlreadyExists

Exception used when there is an object trying to be created but it already exists.

Attributes

id[R]

Public Class Methods

new(id, object) click to toggle source
Calls superclass method
# File lib/kybus/storage/datasource/exceptions.rb, line 11
def initialize(id, object)
  @id = id
  super("Object #{id} already exists", nil, object)
end