INTERNAL_ERROR

Something broke on our side. We were notified.

HTTP status: 500

Why this happens

Something broke on our side.

How to recover

We were notified. Include the request_id from the error envelope when filing a bug report.

Branching on this code

TypeScript
import { ApiError } from "@firecase/sdk";

try {
  await firecase.someCall();
} catch (e) {
  if (e instanceof ApiError && e.code === "INTERNAL_ERROR") {
    // recover here
  }
  throw e;
}