I want to write a simple python to parse 'fossa-cli test' command output (json) replacing the issue type by a human friendly text. But I dont what to see an exception raised by an unexpected error type.
Per example:
{
"cve":null,
"fixedIn":null,
"id":17,
"issueDashURL":"https://..."
"license":"android-sdk",
"priorityString":null,
"resolved":false,
"revisionId":"mvn+com.android$26.0.1",
"rule":{"ruleId":null},
"type":"policy_flag"
},
The found error above is "policy_flag" type, I know there are tohers like "policy_conflict" and "unlicensed_dependency". Are there other types?
Thanks in advance