We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 924cf12 commit 5b3b95bCopy full SHA for 5b3b95b
README.md
@@ -37,7 +37,7 @@ The difference with dotnet cli is that you need to manually modify the .csproj f
37
38
```text
39
<ItemGroup>
40
- <PackageReference Include="TrackingMore" Version="X.Y.Z" />
+ <PackageReference Include="TrackingMore" Version="0.1.1" />
41
</ItemGroup>
42
```
43
TrackingMoreAPI/src/Test.cs
@@ -138,6 +138,10 @@ static void Main(string[] args)
138
{
139
Console.WriteLine("Catch custom exceptions:" + ex.Message);
140
}
141
+ catch (TimeoutException ex)
142
+ {
143
+ Console.WriteLine("Timeout Exception: " + ex.Message);
144
+ }
145
catch (Exception ex)
146
147
Console.WriteLine("Catch other exceptions:" + ex.Message);
0 commit comments