Getting started Community Training Tutorials Documentation APIs, AI & Tools
%dw 2.0
import * from dw::Runtime
var result = []
output application/json
---
if(sizeOf(result) <= 0) fail('Data was empty') else result
You're viewing an older version of the documentation. You can switch to the latest version or use the version selector in the left navigation.
Throws an exception with the specified message.
This example returns a failure message Data was empty because the expression
(sizeOf(myVar) <= 0) is true. A shortened version of the error message
is shown in the output.