Browse Source

Improve the exception message.

pull/8074/head
Halil İbrahim Kalkan 5 years ago
parent
commit
9c4e87f6cb
  1. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/TagHelpers/AbpTagHelperResourceService.cs

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/TagHelpers/AbpTagHelperResourceService.cs

@ -67,7 +67,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bundling.TagHelpers
if (file == null || !file.Exists)
{
throw new AbpException($"Could not find the bundle file '{bundleFile}' in the bundle named '{bundleName}'");
throw new AbpException($"Could not find the bundle file '{bundleFile}' for the bundle '{bundleName}'!");
}
if (file.Length > 0)

Loading…
Cancel
Save