2022-06-29 19:46:41 -04:00
|
|
|
|
namespace Bit.Core.Exceptions;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2022-10-04 02:40:28 +01:00
|
|
|
|
public class NotFoundException : Exception
|
|
|
|
|
|
{
|
|
|
|
|
|
public NotFoundException() : base()
|
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
public NotFoundException(string message)
|
|
|
|
|
|
: base(message)
|
|
|
|
|
|
{ }
|
|
|
|
|
|
}
|