class ConflictException < StandardError attr_reader :object def initialize msg, object=nil super(msg) @object = object end end