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

14 lines
No EOL
310 B
C#

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")
{
}
}
}