123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Runtime.Serialization;
- namespace GDNXFD.Alert.Interpreter
- {
- [Serializable]
- public class ExpressionException : ApplicationException
- {
- public ExpressionException() : base("表达式解析失败.")
- {
- }
- public ExpressionException(string message) : base(message)
- {
- }
- public ExpressionException(Exception innerException) : base(innerException.Message, innerException)
- {
- }
- public ExpressionException(string message, Exception innerException) : base(message, innerException)
- {
- }
- protected ExpressionException(SerializationInfo info, StreamingContext context)
- : base(info, context)
- {
- }
- }
- }
|