Skip to content

Commit a8c76e0

Browse files
author
eanolue@sbsc.com
committed
reverted the ex based on discussion with Raph
1 parent dc7eccc commit a8c76e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Encryption/AesEncryption/BaseAesEncryption.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ internal static byte[] EncryptAES(ByteEncryptionParameters param)
5252
}
5353
}
5454
}
55-
catch (Exception)
55+
catch (Exception ex)
5656
{
5757
throw;
5858
}
@@ -102,7 +102,7 @@ internal static byte[] DecryptAES(ByteDecryptionParameters param)
102102
}
103103
}
104104
}
105-
catch (Exception)
105+
catch (Exception ex)
106106
{
107107
throw;
108108
}

0 commit comments

Comments
 (0)