justinmclean commented on code in PR #6573: URL: https://github.com/apache/gravitino/pull/6573#discussion_r1984128343
########## clients/cli/src/main/java/org/apache/gravitino/cli/commands/ModelDetails.java: ########## @@ -68,20 +68,27 @@ public void handle() { ModelCatalog modelCatalog = client.loadCatalog(catalog).asModelCatalog(); gModel = modelCatalog.getModel(name); versions = modelCatalog.listModelVersions(name); - } catch (NoSuchMetalakeException noSuchMetalakeException) { + + } catch (NoSuchMetalakeException err) { exitWithError(ErrorMessages.UNKNOWN_METALAKE); - } catch (NoSuchCatalogException noSuchCatalogException) { + } catch (NoSuchCatalogException err) { exitWithError(ErrorMessages.UNKNOWN_CATALOG); - } catch (NoSuchSchemaException noSuchSchemaException) { + } catch (NoSuchSchemaException err) { exitWithError(ErrorMessages.UNKNOWN_SCHEMA); - } catch (NoSuchModelException noSuchModelException) { + } catch (NoSuchModelException err) { exitWithError(ErrorMessages.UNKNOWN_MODEL); } catch (Exception err) { - exitWithError(err.getMessage()); + exitWithError("An unexpected error occurred: " + err.getMessage()); Review Comment: please revet this change -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org