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

18 lines
488 B
C#
Raw Permalink Normal View History

2024-01-29 16:27:34 +01:00
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";
}
}