using System; using System.Collections.Generic; using System.Linq; using System.Text; using libMPSSEWrapper.Types; namespace libMPSSEWrapper.Exceptions { /// /// The SpiChannelNotConnectedException Class /// public class SpiChannelNotConnectedException : Exception { /// /// the Reason for the SpiChannelNotConnectedException /// public FtResult Reason { get; private set; } /// /// The Accessor for the SpiChannelNotConnectedException Reason /// /// public SpiChannelNotConnectedException(FtResult res) { Reason = res; } } }