|
|
От: |
Codealot
|
|
| Дата: | 01.12.22 16:52 | ||
| Оценка: | |||
public MyException(string? message = null, Exception? innerException = null) : base(message, innerException)
{
// any additional init goes here ...
Console.WriteLine("MyException was created at {0}", DateTime.UtcNow);
}
...