Exemplo n.º 1
0
 protected StoreError(StoreErrorType storeErrorType, SerializationInfo info, StreamingContext context) : base(info, context)
 {
     StoreErrorType = storeErrorType;
 }
Exemplo n.º 2
0
 public StoreError(StoreErrorType storeErrorType, string message) : base($"{storeErrorType.ToString()}: {message}")
 {
     StoreErrorType = storeErrorType;
 }
Exemplo n.º 3
0
 public StoreError(StoreErrorType storeErrorType, string message, Exception innerException) : base($"{storeErrorType.ToString()}", innerException)
 {
     StoreErrorType = storeErrorType;
 }
Exemplo n.º 4
0
 public StoreError(StoreErrorType storeErrorType) : base($"{storeErrorType.ToString()}")
 {
     StoreErrorType = storeErrorType;
 }