mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
18 lines
374 B
C#
18 lines
374 B
C#
namespace Daybreak.Shared.Exceptions;
|
|
|
|
public sealed class CredentialsNotFoundException : Exception
|
|
{
|
|
public CredentialsNotFoundException()
|
|
{
|
|
}
|
|
|
|
public CredentialsNotFoundException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
|
|
public CredentialsNotFoundException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|