| 12345678910111213 |
- using System.Runtime.Serialization;
-
- namespace Diligent.WebAPI.Host.Exceptions
- {
- public class BaseException : Exception
- {
- public BaseException() { }
- public BaseException(string? message) : base(message) { }
- public BaseException(string message, Exception innerException) : base(message, innerException) { }
- public BaseException(SerializationInfo info, StreamingContext context) : base(info, context) { }
-
- }
- }
|