Application.Common.Exceptions.EntityNotFoundException.EntityNotFoundException C# (CSharp) Method

EntityNotFoundException() public method

public EntityNotFoundException ( string name, object key ) : System
name string
key object
return System
        public EntityNotFoundException(string name, object key)
            : base($"Entity '{name}' ({key}) was not found.")
        {
        }
    }
EntityNotFoundException