mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
* [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-534] Implemented CQRS for Users Get and added unit tests * [EC-508] Renamed GetUserCommand to GetUserQuery * [EC-508] Created ScimServiceCollectionExtensions * [EC-508] Renamed AddScimCommands to AddScimUserQueries * [EC-508] Created ExceptionHandlerFilterAttribute on SCIM project Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
12 lines
208 B
C#
12 lines
208 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
public class NotFoundException : Exception
|
|
{
|
|
public NotFoundException() : base()
|
|
{ }
|
|
|
|
public NotFoundException(string message)
|
|
: base(message)
|
|
{ }
|
|
}
|