Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
467 B

  1. using System;
  2. namespace mbsh
  3. {
  4. /// <summary>
  5. ///
  6. /// </summary>
  7. public class CMbshException : System.Exception
  8. {
  9. private string eMessage;
  10. public CMbshException()
  11. {
  12. }
  13. public CMbshException(string eMessage)
  14. {
  15. this.eMessage = eMessage;
  16. }
  17. public override string Message
  18. {
  19. get
  20. {
  21. string msg = base.Message;
  22. if (eMessage != null)
  23. {
  24. msg = eMessage;
  25. }
  26. return msg;
  27. }
  28. }
  29. }
  30. }