DataExchangeException.cs 311 B

1234567891011121314
  1. using System;
  2. namespace Cbdx
  3. {
  4. public class DataExchangeException : Exception
  5. {
  6. public string NativeStackTrace { get; }
  7. public DataExchangeException(string message, string nativeStackTrace) : base(message)
  8. {
  9. NativeStackTrace = nativeStackTrace;
  10. }
  11. }
  12. }