patbef-ServiceOutside/ServiceShared/Models/Response/Exception/WrongFileChecksumException.cs

18 lines
488 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceShared.Models.Response.Exception
{
/// <summary>
/// This exception will be thrown when FileChecksum is invalid
/// </summary>
public class WrongFileChecksumException : ResponseException
{
public override Types error_type => Types.WrongFileChecksum;
public override string message => "wrong file checksum";
}
}