xds: fix lint warning for throwing RuntimeException

This commit is contained in:
ZHANG Dapeng 2019-11-01 16:52:24 -07:00 committed by GitHub
parent 8b242e1ca1
commit 97d4fa6614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ abstract class Bootstrapper {
} }
} }
if (failToBootstrapException != null) { if (failToBootstrapException != null) {
throw new RuntimeException(failToBootstrapException); throw new IOException(failToBootstrapException);
} }
return bootstrapInfo; return bootstrapInfo;
} }