Lines Matching refs:errorText
106 client.errorText = this.responseText;
108 client.errorText = String.fromCharCode.apply(
113 client.setState(ProxyState.ERROR, client.errorText);
291 client.errorText = request.responseText;
292 client.setState(ProxyState.ERROR, client.errorText);
310 (param: ProxyState, errorText: string): Promise<void>;
315 errorText = ''; property in ProxyClient
321 async setState(state: ProxyState, errorText = '') {
323 this.errorText = errorText;
325 await listener(state, errorText);
329 onProxyChange(fn: (state: ProxyState, errorText: string) => Promise<void>) {
335 removeFn: (state: ProxyState, errorText: string) => Promise<void>,