Lean
$LEAN_TAG$
NoTickersAvailableException.cs
1
namespace
QuantConnect.ToolBox.RandomDataGenerator
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>
6
public
class
NoTickersAvailableException
:
RandomValueGeneratorException
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
}
ToolBox
RandomDataGenerator
NoTickersAvailableException.cs
Generated by
1.8.17