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