Description
Lines like the following:
throw new CatalogException("", e);
will become:
throw new CatalogException(e.getMessage(), e);
Lines like the following:
throw new CatalogException("", e);
will become:
throw new CatalogException(e.getMessage(), e);