All exceptions from Ruby apps are automatically captured by Atatus. If you wish to send exceptions manually, you can do so by using the Atatus.report()
method.
Syntax
copy
Atatus.report()
Examples
copy
def process
begin
1 / 0
rescue ZeroDivisionError => exception
Atatus.report(exception)
end
end