pms5003/PMS5003/Exceptions/ReadFailedException.cs

14 lines
310 B
C#
Raw Normal View History

2021-04-10 14:48:03 +00:00
using System;
namespace PMS5003.Exceptions
{
/// <summary>
/// Thrown the the read has failed.
/// </summary>
public class ReadFailedException : Exception
{
public ReadFailedException() : base("PMS5003 read failed, max retries exceeded")
{
}
}
}