| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //------------------------------------------------------------------------------
- //
- // System.ComponentModel.WarningException.
- //
- // Author: Asier Llano Palacios, [email protected]
- //
- //------------------------------------------------------------------------------
- using System;
- namespace System.ComponentModel {
- public class WarningException : SystemException
- {
- private string helpUrl;
- private string helpTopic;
-
- public WarningException( string message )
- : base( message ) {
- helpUrl = null;
- helpTopic = null;
- }
- public WarningException( string message, string helpUrl )
- : base( message ) {
- this.helpUrl = helpUrl;
- this.helpTopic = null;
- }
- public WarningException( string message, string helpUrl, string helpTopic ) {
- this.helpUrl = helpUrl;
- this.helpTopic = helpTopic;
- }
- public string HelpTopic {
- get {
- return helpTopic;
- }
- }
- public string HelpUrl {
- get {
- return helpUrl;
- }
- }
- }
- }
|