File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,11 @@ public async Task<List<Bill>> GetBills(string? status = null)
147
147
/// <throws>BitPayApiException BitPayApiException class</throws>
148
148
public async Task < Bill > UpdateBill ( Bill bill , string billId )
149
149
{
150
- if ( bill == null ) BitPayExceptionProvider . ThrowMissingParameterException ( ) ;
150
+ if ( bill == null )
151
+ {
152
+ BitPayExceptionProvider . ThrowMissingParameterException ( ) ;
153
+ throw new InvalidOperationException ( ) ;
154
+ }
151
155
152
156
string json = null ! ;
153
157
Original file line number Diff line number Diff line change 2
2
<PropertyGroup >
3
3
<Nullable >enable</Nullable >
4
4
<LangVersion >latest</LangVersion >
5
- <TargetFrameworks >netstandard2.0 ;net6.0;net7.0;net8.0</TargetFrameworks >
5
+ <TargetFrameworks >net48 ;net6.0;net7.0;net8.0</TargetFrameworks >
6
6
</PropertyGroup >
7
7
</Project >
You can’t perform that action at this time.
0 commit comments