Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SocksException.cs
Go to the documentation of this file.
1using System.IO;
2
3namespace System.Net.Http;
4
5internal class SocksException : IOException
6{
7 public SocksException(string message)
8 : base(message)
9 {
10 }
11
12 public SocksException(string message, Exception innerException)
13 : base(message, innerException)
14 {
15 }
16}
SocksException(string message, Exception innerException)