StorageApiError
import { StorageApiError } from "https://esm.sh/@supabase/supabase-js@2.103.0/dist/index.d.mts";API error returned from Storage service Includes HTTP status code and service-specific error code
class StorageApiError extends StorageError { }
constructor(
message: string,
status: number,
statusCode: string,
namespace?: ErrorNamespace,
);status: number;
statusCode: string;
toJSON(): {
name: string;
message: string;
status: number;
statusCode: string;
};