fluke/devops-service/exceptions/conflict_exception.rb

12 lines
145 B
Ruby
Raw Normal View History

2015-09-03 14:07:21 +03:00
class ConflictException < StandardError
2015-07-27 15:40:10 +03:00
attr_reader :object
def initialize msg, object=nil
super(msg)
@object = object
end
2015-07-27 15:40:10 +03:00
end