Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 342 Bytes

batch.exit.md

File metadata and controls

20 lines (14 loc) · 342 Bytes

Batch.exit

The exit function is used to set the ERRORLEVEL of the batch execution.

Sample

var batch = new Batch();
batch.exit(1);

API

Calling Returning
batch. exit ( level ) Batch
Parameters Type Description
level Number An integer for ERRORLEVEL.