diff --git a/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/Exceptions/GenericApplicationErrors.cs b/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/Exceptions/GenericApplicationErrors.cs index 9c49f9ddc4..9771f4bd67 100644 --- a/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/Exceptions/GenericApplicationErrors.cs +++ b/BuildingBlocks/src/BuildingBlocks.Application.Abstractions/Exceptions/GenericApplicationErrors.cs @@ -7,7 +7,7 @@ public static ApplicationError NotFound(string recordName = "") var formattedRecordName = string.IsNullOrEmpty(recordName) ? "Record" : recordName; return new ApplicationError("error.platform.recordNotFound", - $"{formattedRecordName} not found. Make sure the ID exists and the record is not expired."); + $"{formattedRecordName} not found. Make sure the ID exists and the record is not expired. If a password is required to fetch the record, make sure you passed the correct one."); } public static ApplicationError Unauthorized()