mirror of https://github.com/grpc/grpc-java.git
xds: fix lint warning for throwing RuntimeException
This commit is contained in:
parent
8b242e1ca1
commit
97d4fa6614
|
|
@ -81,7 +81,7 @@ abstract class Bootstrapper {
|
|||
}
|
||||
}
|
||||
if (failToBootstrapException != null) {
|
||||
throw new RuntimeException(failToBootstrapException);
|
||||
throw new IOException(failToBootstrapException);
|
||||
}
|
||||
return bootstrapInfo;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue