Exceptions.cs
上传用户:hncsjykj
上传日期:2022-08-09
资源大小:461k
文件大小:3k
源码类别:

Email客户端

开发平台:

C#

  1. /******************************************************************************
  2. Copyright 2003-2004 Hamid Qureshi and Unruled Boy 
  3. OpenPOP.Net is free software; you can redistribute it and/or modify
  4. it under the terms of the Lesser GNU General Public License as published by
  5. the Free Software Foundation; either version 2 of the License, or
  6. (at your option) any later version.
  7. OpenPOP.Net is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. Lesser GNU General Public License for more details.
  11. You should have received a copy of the Lesser GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. /*******************************************************************************/
  15. /*
  16. *Name: OpenPOP.POP3
  17. *Function: exceptions
  18. *Author: Hamid Qureshi
  19. *Created: 2003/8
  20. *Modified: 3 May 2004 0200 GMT+5 by Hamid Qureshi
  21. *Description:
  22. *Changes: 2004/4/2 21:25 GMT+8 by Unruled Boy
  23. * 1.added PopServerLockException
  24. * 3 May 2004 0200 GMT+5 by Hamid Qureshi
  25. * 1.Adding NDoc Comments
  26. */
  27. using System;
  28. namespace OpenPOP.POP3
  29. {
  30. /// <summary>
  31. /// Thrown when the POP3 Server sends an error (-ERR) during intial handshake (HELO)
  32. /// </summary>
  33. public class PopServerNotAvailableException:Exception
  34. {}
  35. /// <summary>
  36. /// Thrown when the specified POP3 Server can not be found or connected with
  37. /// </summary>
  38. public class PopServerNotFoundException:Exception
  39. {}
  40. /// <summary>
  41. /// Thrown when the attachment is not in a format supported by OpenPOP.NET
  42. /// </summary>
  43. /// <remarks>Supported attachment encodings are Base64,Quoted Printable,MS TNEF</remarks>
  44. public class AttachmentEncodingNotSupportedException:Exception
  45. {}
  46. /// <summary>
  47. /// Thrown when the supplied login doesn't exist on the server
  48. /// </summary>
  49. /// <remarks>Should be used only when using USER/PASS Authentication Method</remarks>
  50. public class InvalidLoginException:Exception
  51. {}
  52. /// <summary>
  53. /// Thrown when the password supplied for the login is invalid
  54. /// </summary>
  55. /// <remarks>Should be used only when using USER/PASS Authentication Method</remarks>
  56. public class InvalidPasswordException:Exception
  57. {}
  58. /// <summary>
  59. /// Thrown when either the login or the password is invalid on the POP3 Server
  60. /// </summary>
  61. /// /// <remarks>Should be used only when using APOP Authentication Method</remarks>
  62. public class InvalidLoginOrPasswordException:Exception
  63. {}
  64. /// <summary>
  65. /// Thrown when the user mailbox is in a locked state
  66. /// </summary>
  67. /// <remarks>The mail boxes are locked when an existing session is open on the mail server. Lock conditions are also met in case of aborted sessions</remarks>
  68. public class PopServerLockException:Exception
  69. {}
  70. }