Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 622 Bytes

File metadata and controls

31 lines (23 loc) · 622 Bytes
layout api-command
language JavaScript
permalink api/javascript/error/
command error
io
r
error

Command syntax

{% apibody %} r.error(message) → error {% endapibody %}

Description

Throw a runtime error. If called with no arguments inside the second argument to default, re-throw the current error.

Example: Iron Man can't possibly have lost a battle:

r.table('marvel').get('IronMan').do(function(ironman) {
    return r.branch(ironman('victories').lt(ironman('battles')),
        r.error('impossible code path'),
        ironman)
}).run(conn, callback)