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
icon/buttons/copy
Atatus.report()

Examples

copy
icon/buttons/copy
def process

    begin
        1 / 0
    rescue ZeroDivisionError => exception
        Atatus.report(exception)
    end

end