コード例 #1
0
 public WalletErrorException(WalletError error) : base(error.ToString())
 {
 }
コード例 #2
0
 public WalletErrorException(WalletError error, Exception innerException) : base(error.ToString(), innerException)
 {
 }
コード例 #3
0
 public WalletErrorException(WalletError error, string message, Exception innerException) : base(error.ToString() + ": " + message, innerException)
 {
 }
コード例 #4
0
 public WalletErrorException(WalletError error, string message) : base(error.ToString() + ": " + message)
 {
 }