- using System;
- namespace Cbdx
- {
- public class DataExchangeException : Exception
- {
- public string NativeStackTrace { get; }
- public DataExchangeException(string message, string nativeStackTrace) : base(message)
- {
- NativeStackTrace = nativeStackTrace;
- }
- }
- }
|