Using SimpleSchema for argument check in publications and audit-arguments-check

Hello!

I saw a recommendation in meteor guide about using SimpleSchema for checking arguments in publications. So i tried to replace check/Match in one publication, but audit-arguments-check complains that i did not check all arguments. Of course i can use check() with SimpleSchema, but then i’ll have simple 400 error if one of checks fails, without much details.

Is there a possibility to use SimpleSchema argument check in publication with audit-arguments-check enabled and have custom error messages provided by SimpleSchema?