MembershipPasswordException.cs 505 B

12345678910111213141516171819
  1. //
  2. // System.Web.Security.MembershipPasswordException
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. namespace System.Web.Security {
  11. public class MembershipPasswordException : HttpException {
  12. public MembershipPasswordException () : base () {}
  13. public MembershipPasswordException (string message) : base (message) {}
  14. public MembershipPasswordException (string message, Exception innerException) : base (message, innerException) {}
  15. }
  16. }
  17. #endif