pms5003/PMS5003/Exceptions/ChecksumMismatchException.cs
2021-04-10 17:49:36 +03:00

14 lines
No EOL
356 B
C#

using System;
namespace PMS5003.Exceptions
{
/// <summary>
/// ChecksumMismatchException when the frame contents of PMS5003 doesn't match the checksum.
/// </summary>
public class ChecksumMismatchException : Exception
{
public ChecksumMismatchException() : base("Checksum mismatch.")
{
}
}
}