public ConfigWWWError(Urls urls, WWWError error) : base(urls, $"WWW error: {error.error}") { this.error = error; }
public NetError(WWWError error) { this.error = error; }
public NetError(string url, WWWError error) { this.url = url; this.error = error; }