@uppy/utils
Version:
Shared utility functions for Uppy Core and plugins maintained by the Uppy team.
13 lines • 406 B
JavaScript
import hasProperty from './hasProperty.js';
class ErrorWithCause extends Error {
constructor(message, options) {
super(message);
this.cause = options == null ? void 0 : options.cause;
if (this.cause && hasProperty(this.cause, 'isNetworkError')) {
this.isNetworkError = this.cause.isNetworkError;
} else {
this.isNetworkError = false;
}
}
}
export default ErrorWithCause;