SelfConnectingLogicException constructor

SelfConnectingLogicException(
  1. Logic a,
  2. Logic b
)

Creates an exception when a Logic is trying to connect itself.

Implementation

SelfConnectingLogicException(Logic a, Logic b)
    : super('Failed to connect signal "$a" with signal "$b":'
          ' Self connecting logic not allowed.');