/** * The `FetchError` object indicates an error when request to Open Cloud Server could not be * performed. A `FetchError` is typically (but not exclusively) thrown when a network error * occurs, access denied, or object not found. */ export declare class FetchError extends Error { protected status: number; protected statusText: string; /** * @property status - The HTTP status code of the response. * @property message - Error message. Inherited from Error. */ constructor(status: number, message?: string); } //# sourceMappingURL=FetchError.d.ts.map