Пример #1
0
 protected StoreError(StoreErrorType storeErrorType, SerializationInfo info, StreamingContext context) : base(info, context)
 {
     StoreErrorType = storeErrorType;
 }
Пример #2
0
 public StoreError(StoreErrorType storeErrorType, string message) : base($"{storeErrorType.ToString()}: {message}")
 {
     StoreErrorType = storeErrorType;
 }
Пример #3
0
 public StoreError(StoreErrorType storeErrorType, string message, Exception innerException) : base($"{storeErrorType.ToString()}", innerException)
 {
     StoreErrorType = storeErrorType;
 }
Пример #4
0
 public StoreError(StoreErrorType storeErrorType) : base($"{storeErrorType.ToString()}")
 {
     StoreErrorType = storeErrorType;
 }