| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // System.ComponentModel.WarningException.cs
- //
- // 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;
- }
- }
- }
- }
|