![]() | STARException Class |
Namespace: Huarui.STARLine
The STARException type exposes the following members.
Name | Description | |
---|---|---|
![]() | STARException |
STARException construction
|
Name | Description | |
---|---|---|
![]() | ModuleErrors |
Module errors from device
|
ErrorRecoveryOptions options = new ErrorRecoveryOptions(); options.Add(MainErrorEnum.NoTipError, new ErrorRecoveryOption() { Recovery = RecoveryAction.Cancel }); options.Add(MainErrorEnum.NotExecutedError, new ErrorRecoveryOption() { Recovery = RecoveryAction.Cancel }); try { ML_STAR.Channel.PickupTip(cnts, options); } catch (STARException e) { foreach (ModuleError err in e.ModuleErrors) { Console.WriteLine(err.Module + " " + err.MainError + ":" + err.SlaveError + " " + err.LabwareId + ", " + err.PositionId); } }