namespace RhythmBase.Exceptions
{
///
/// Exception thrown when an invalid RD beat is encountered.
///
public class InvalidRDBeatException : RhythmBaseException
{
///
/// Initializes a new instance of the class.
///
public InvalidRDBeatException()
{
Message = "The beat is invalid, possibly because the beat is not associated with the RDLevel.";
}
///
/// Gets the error message that explains the reason for the exception.
///
public override string Message { get; }
}
}