7 lines
91 B
Ruby
7 lines
91 B
Ruby
|
|
class TestSubscriber
|
||
|
|
def cancel_order_failed data
|
||
|
|
puts data
|
||
|
|
raise data
|
||
|
|
end
|
||
|
|
end
|