Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
QuicException.cs
Go to the documentation of this file.
1namespace System.Net.Quic;
2
3public class QuicException : Exception
4{
5 public QuicException(string? message)
6 : base(message)
7 {
8 }
9
10 public QuicException(string? message, Exception? innerException)
11 : base(message, innerException)
12 {
13 }
14
15 public QuicException(string? message, Exception? innerException, int result)
16 : base(message, innerException)
17 {
18 base.HResult = result;
19 }
20}
QuicException(string? message, Exception? innerException)
QuicException(string? message, Exception? innerException, int result)
QuicException(string? message)