Lean
$LEAN_TAG$
RandomValueGeneratorException.cs
1
using
System;
2
3
namespace
QuantConnect.ToolBox.RandomDataGenerator
4
{
5
/// <summary>
6
/// Provides a base class for exceptions thrown by implementations of <see cref="IRandomValueGenerator"/>
7
/// </summary>
8
public
class
RandomValueGeneratorException
: ApplicationException
9
{
10
public
RandomValueGeneratorException
(
string
message)
11
: base(message)
12
{
13
}
14
}
15
}
ToolBox
RandomDataGenerator
RandomValueGeneratorException.cs
Generated by
1.8.17