Is there a way to ignore errors in Rhino Compute / Hops?

If I run a GH definition through Rhino.Compute and this definition contains errors, the result is an internal server error:

ResthopperEndpoints.cs:125

            if (definition.HasErrors)
                res.StatusCode = Nancy.HttpStatusCode.InternalServerError;
            else

However, I have some big and complicated GH scripts that raise errors but still return the correct result (because the errors refer to some parts I don’t need, for example). In this case, it would be nice to have a possibility for Compute to ignore errors and return the result as is.

For my custom setup, I can of course just change the lines above, but I was wondering if there was some way to configure something like this in Compute and/or Hops without modifying the source code of Compute.