Browse Source
Merge pull request #9281 from abpframework/maliming-patch-2
Update EntityNotFoundException.cs
pull/9282/head
liangshiwei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.ExceptionHandling/Volo/Abp/Domain/Entities/EntityNotFoundException.cs
|
|
|
@ -49,7 +49,7 @@ namespace Volo.Abp.Domain.Entities |
|
|
|
public EntityNotFoundException(Type entityType, object id, Exception innerException) |
|
|
|
: base( |
|
|
|
id == null |
|
|
|
? $"There is no such an entity given given id. Entity type: {entityType.FullName}" |
|
|
|
? $"There is no such an entity given id. Entity type: {entityType.FullName}" |
|
|
|
: $"There is no such an entity. Entity type: {entityType.FullName}, id: {id}", |
|
|
|
innerException) |
|
|
|
{ |
|
|
|
|