您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
709B

  1. namespace Campaign_Tracker.Server.LegacyData;
  2. /// <summary>
  3. /// Base exception for errors originating in the legacy data access layer.
  4. /// </summary>
  5. public class LegacyDataAccessException : Exception
  6. {
  7. public LegacyDataAccessException(string message) : base(message) { }
  8. public LegacyDataAccessException(string message, Exception innerException) : base(message, innerException) { }
  9. }
  10. /// <summary>
  11. /// Thrown when the anti-corruption layer boundary detects an attempted write
  12. /// operation on an immutable legacy table (AC #2).
  13. /// </summary>
  14. public sealed class LegacyWriteAttemptException : LegacyDataAccessException
  15. {
  16. public LegacyWriteAttemptException(string message) : base(message) { }
  17. }

Powered by TurnKey Linux.