Convert to new namespace stuff and implicit usings

This commit is contained in:
AeonLucid
2022-01-07 06:07:05 +01:00
parent ce2ea7f295
commit 2f01cf7411
85 changed files with 2538 additions and 2696 deletions
@@ -1,24 +1,22 @@
using System;
using System.Runtime.Serialization;
using System.Runtime.Serialization;
namespace Prospect.Server.Api.Exceptions
namespace Prospect.Server.Api.Exceptions;
public class ProspectException : Exception
{
public class ProspectException : Exception
public ProspectException()
{
public ProspectException()
{
}
}
protected ProspectException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
protected ProspectException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public ProspectException(string message) : base(message)
{
}
public ProspectException(string message) : base(message)
{
}
public ProspectException(string message, Exception innerException) : base(message, innerException)
{
}
public ProspectException(string message, Exception innerException) : base(message, innerException)
{
}
}