/// Constructs a MediationException with a message and MediationExceptionType
 public MediationException(string message, MediationExceptionType exceptionType) : base(message)
 {
     type = exceptionType;
 }
示例#2
0
 /// Constructs a MediationException with a message and MediationExceptionType
 public MediationException(string message, MediationExceptionType exceptionType)
     : base(message)
 {
     type = exceptionType;
 }
示例#3
0
 public MediationException(MediationExceptionType type, object data1, object data2) : base($"{type} [{data1}] [{data2}]")
 {
 }
示例#4
0
 public MediationException(MediationExceptionType type) : base(type.ToString())
 {
 }
示例#5
0
 public MediationException(MediationExceptionType type, object data) : base($"{type} [{data}]")
 {
 }