Files
JWLMerge/JWLMerge.BackupFileServices/Exceptions/BackupFileServicesException.cs
Antony Corbett d52ca61a37 analyser warnings
2023-02-22 11:08:17 +00:00

28 lines
659 B
C#

using System;
using System.Runtime.Serialization;
namespace JWLMerge.BackupFileServices.Exceptions;
[Serializable]
public class BackupFileServicesException : Exception
{
public BackupFileServicesException()
{
}
public BackupFileServicesException(string errorMessage)
: base(errorMessage)
{
}
public BackupFileServicesException(string message, Exception innerException)
: base(message, innerException)
{
}
// Without this constructor, deserialization will fail
protected BackupFileServicesException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}