Say, for example, that I have a PostsService that creates a post:
public class PostsService : IPostsService
{
public bool Create(Post post)
{
if(!this.Validate(post))
{
return false;
}
try
{
this.repository.Add(post);
this.repository.Save();
}
catch(Exception e)
{
return false;
}
}
}
The problem with this is that if an exception is thrown during the repository actions, it's swallowed. Create() returns false and all that the consumer knows is that the Post wasn't added, but doesn't know why.
Instead, I was think of having a ServiceResult class:
public class ServiceResult
{
public bool Success { get; private set; }
public Exception Exception { get; private set; }
}
Would this be a good design? Or do I even need to report these errors to the consumer? Is it sufficient to say "An error occurred while adding the post." and then log the exception inside of the service?
Any other suggestions are appreciated.