Lean  $LEAN_TAG$
NoTickersAvailableException.cs
2 {
3  /// <summary>
4  /// Exception thrown when there are no tickers left to generate for a certain combination of security type and market.
5  /// </summary>
7  {
8  public NoTickersAvailableException(SecurityType securityType, string market)
9  : base($"Failed to generate {securityType} symbol for {market}, there are no tickers left")
10  {
11  }
12  }
13 }