Hi,
today I was working on Azure connector, below is mycode
If(
!IsBlank(vFilePath),
Launch(AzureBlobStorage.CreateShareLinkByPath(vFilePath).WebUrl),
Notify(
"File Path not found",
NotificationType.Error
)
)
if the filePath is empty i'm showing file path not found. but I'm having file path but the file was not there where i'm getting run time error like this
"error": { "message": "Specified blob Testing/sales.csv does not exist." }
I'm wondering is it possible to capture run time errors and showcase in UI saying that file not found ?