class Ant::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/ant/storage/datasource/exceptions.rb, line 11 def initialize(id, object) @id = id super("Object #{id} already exists", nil, object) end