選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BaseException.cs 454B

12345678910111213
  1. using System.Runtime.Serialization;
  2. namespace Diligent.WebAPI.Host.Exceptions
  3. {
  4. public class BaseException : Exception
  5. {
  6. public BaseException() { }
  7. public BaseException(string? message) : base(message) { }
  8. public BaseException(string message, Exception innerException) : base(message, innerException) { }
  9. public BaseException(SerializationInfo info, StreamingContext context) : base(info, context) { }
  10. }
  11. }