blob: cfeaed5b78f5d01ec76a8128723774e47c2db278 [file] [log] [blame] [view]
# ProxyError constructor
ProxyError(String message)
<p>Creates a proxy error with the given message.</p>
<p>The <code>message</code> argument must not be null.</p>
## Implementation
```dart
ProxyError(this.message);
```