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