Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SmtpException.cs
1
using
System;
2
3
namespace
Waher.Networking.SMTP.Exceptions
4
{
8
public
class
SmtpException
: Exception
9
{
10
private
readonly
int
code;
11
17
public
SmtpException
(
string
Message,
int
Code
)
18
: base(Message)
19
{
20
this.code =
Code
;
21
}
22
26
public
int
Code
=> this.code;
27
}
28
}
Waher.Networking.SMTP.Exceptions.SmtpException
Base class for SMTP-related exceptions.
Definition:
SmtpException.cs:9
Waher.Networking.SMTP.Exceptions.SmtpException.SmtpException
SmtpException(string Message, int Code)
Base class for SMTP-related exceptions.
Definition:
SmtpException.cs:17
Waher.Networking.SMTP.Exceptions.SmtpException.Code
int Code
SMTP return code.
Definition:
SmtpException.cs:26
Waher.Networking.SMTP.Exceptions
Definition:
SmtpException.cs:4
IoTGateway
Networking
Waher.Networking.SMTP
Exceptions
SmtpException.cs
Generated by
1.9.5