public AzureTableCryptoDecryptionException(EncryptableTableEntity entity, string msg)
     : this(entity, msg, null)
 {
 }
 public AzureTableCryptoDecryptionException(EncryptableTableEntity entity, string msg, Exception inner)
     : base(msg, inner)
 {
     this.Entity = entity;
 }
 public AzureTableCryptoDecryptionException(EncryptableTableEntity entity)
     : this(null, "Error decrypting a table entity")
 {
 }