Remove dead vmservice.RPCError catch (#53193)

This commit is contained in:
Jenn Magder 2020-03-24 13:35:29 -07:00 committed by GitHub
parent 8e492fa845
commit 151c8db7dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -520,8 +520,6 @@ class _ResidentWebRunner extends ResidentWebRunner {
return OperationResult(1, err.toString(), fatal: true);
} on WipError catch (err) {
return OperationResult(1, err.toString(), fatal: true);
} on vmservice.RPCError catch (err) {
return OperationResult(1, err.toString(), fatal: true);
} finally {
status.stop();
}