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

16 lines
No EOL
420 B
C#

using System;
namespace PMS5003.Exceptions
{
/// <summary>
/// BufferUnderflowExceptions is thrown when the PMS5003 data buffer is incomplete.
/// </summary>
[Serializable]
public class BufferUnderflowException : Exception
{
public BufferUnderflowException() : base("The PMS5003 data buffer is underrun, not enough bytes read!")
{
}
}
}