using System; namespace PMS5003.Exceptions { /// /// Thrown the the read has failed. /// public class ReadFailedException : Exception { public ReadFailedException() : base("PMS5003 read failed, max retries exceeded") { } } }