pms5003/PMS5003/Exceptions/ChecksumMismatchException.cs

14 lines
356 B
C#
Raw Normal View History

2021-04-10 14:48:03 +00:00
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.")
{
}
}
}