Hello friends, i’m a beginner in APIGEE. I want to show custom RaiseFault instead of following default error thrown by APIGEE, incase if proxy endpoint is incorrect:
{
"fault": {
"faultstring": "Unable to identify proxy for host: default and url: XXX",
"detail": {
"errorcode": "messaging.adaptors.http.flow.ApplicationNotFound"
}
}
}
I tried found fault rule for handling exception, but RF not triggering.
<Step>
<Condition>adaptors.http.flow.ApplicationNotFound.failed = true</Condition>
<Name>RF-AppNotFound</Name>
</Step>
thanks,