VCommonException.cs 553 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Runtime.Serialization;
  3. namespace VCommon
  4. {
  5. [Serializable]
  6. public class VCommonException : Exception
  7. {
  8. public VCommonException()
  9. {
  10. }
  11. public VCommonException(string message) : base(message)
  12. {
  13. }
  14. public VCommonException(string message, Exception inner) : base(message, inner)
  15. {
  16. }
  17. protected VCommonException(
  18. SerializationInfo info,
  19. StreamingContext context) : base(info, context)
  20. {
  21. }
  22. }
  23. }