mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-07-15 03:07:34 -04:00
14 lines
280 B
C#
14 lines
280 B
C#
namespace JWLMerge.BackupFileServices.Exceptions
|
|
{
|
|
using System;
|
|
|
|
[Serializable]
|
|
public class BackupFileServicesException : Exception
|
|
{
|
|
public BackupFileServicesException(string errorMessage)
|
|
: base(errorMessage)
|
|
{
|
|
}
|
|
}
|
|
}
|