コード例 #1
0
ファイル: Config.cs プロジェクト: CarlosMeloStuff/tlplib
 public ConfigWWWError(Urls urls, WWWError error)
     : base(urls, $"WWW error: {error.error}")
 {
     this.error = error;
 }
コード例 #2
0
 public NetError(WWWError error)
 {
     this.error = error;
 }
コード例 #3
0
 public NetError(string url, WWWError error)
 {
     this.url   = url;
     this.error = error;
 }