This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Exceptions/ExpressionException.cs
T

24 lines
668 B
C#

namespace RhythmBase.Exceptions
{
/// <summary>
/// Represents errors that occur during expression evaluation in the RhythmBase application.
/// </summary>
public class ExpressionException : RhythmBaseException
{
/// <summary>
/// Initializes a new instance of the <see cref="ExpressionException"/> class.
/// </summary>
public ExpressionException()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="ExpressionException"/> class with a specified error message.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public ExpressionException(string message) : base(message)
{
}
}
}