diff --git a/core/src/main/python/wlsdeploy/tool/create/custom_folder_helper.py b/core/src/main/python/wlsdeploy/tool/create/custom_folder_helper.py index 939aa0bf9..998dafade 100644 --- a/core/src/main/python/wlsdeploy/tool/create/custom_folder_helper.py +++ b/core/src/main/python/wlsdeploy/tool/create/custom_folder_helper.py @@ -82,7 +82,8 @@ def update_security_folder(self, location, model_type, model_subtype, model_name property_descriptor = property_map.get(model_key) if not property_descriptor: - ex = exception_helper.create_exception(self.exception_type, 'WLSDPLY-12128', model_key) + folder_path = self.alias_helper.get_model_folder_path(type_location) + ex = exception_helper.create_exception(self.exception_type, 'WLSDPLY-12128', model_key, folder_path) self.logger.throwing(ex, class_name=self.__class_name, method_name=_method_name) raise ex diff --git a/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties b/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties index f3f333d63..ad5c83660 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties +++ b/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties @@ -1159,7 +1159,7 @@ WLSDPLY-12124=Updating {0} "{1}" ({2}) at location {3} WLSDPLY-12125=Unable to load bean information for interface {0} WLSDPLY-12126=Property descriptor {0} WLSDPLY-12127=Updating attribute {0} to {1} -WLSDPLY-12128=No property descriptor found for attribute {0} +WLSDPLY-12128=No property descriptor found for attribute {0} at location {1} WLSDPLY-12129=Skipping read-only attribute {0} WLSDPLY-12130=The set method for attribute {0} has {1} arguments WLSDPLY-12131=Unable to invoke method "{0}" with argument {1}: {2}