public override void TryHandleTicket(ErrorTicket ticket) { if (_handler == null) { throw new ArgumentException("SupportCenterCoR::TryHandleTicket -> Handler not set!"); } _handler.Handle(ticket); }
/// <summary> /// Forward the ticket down the CoR /// </summary> public void Forward(ErrorTicket ticket) { _nextHandler?.Handle(ticket); }