Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SmtpException.cs
1using System;
2
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}
Base class for SMTP-related exceptions.
Definition: SmtpException.cs:9
SmtpException(string Message, int Code)
Base class for SMTP-related exceptions.