home *** CD-ROM | disk | FTP | other *** search
- '+==========================================================================
- ' File: MyCustomException.vb
- '
- ' Summary: This file implements the MyCustomException class
- '
- ' Classes: MyCustomException
- '
- ' Functions:
- '
- '----------------------------------------------------------------------------
- ' This file is part of the Microsoft NGWS Samples.
- '
- ' Copyright (C) 1998-2000 Microsoft Corporation. All rights reserved.
- '==========================================================================+
-
- Imports System
-
- NameSpace MyTestException
- Public Class MyCustomException
- Inherits ApplicationException
-
- Public Sub New()
- MyBase.New ("MyCustomException")
- ' SetErrorCode &H80040001 'This needs to be changed
- SetHelpLink ("http://something.com/help.html")
- End Sub
-
- End Class
-
- End NameSpace