We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8296b5e commit 3702653Copy full SHA for 3702653
1 file changed
src/commands/issue/merge.ts
@@ -25,6 +25,7 @@ import { type MergeIssuesResult, mergeIssues } from "../../lib/api-client.js";
25
import { buildCommand } from "../../lib/command.js";
26
import {
27
ApiError,
28
+ CliError,
29
ResolutionError,
30
ValidationError,
31
} from "../../lib/errors.js";
@@ -125,7 +126,7 @@ async function resolveAllIssues(
125
126
if (!org) {
127
// Unreachable — resolved.length >= 1 (callers guard for <2) and we
128
// just asserted every entry has a non-empty org.
- throw new Error("Internal error: resolved issue missing org slug.");
129
+ throw new CliError("Internal error: resolved issue missing org slug.");
130
}
131
132
// Dedupe on resolved numeric ID: a user may pass the same issue in
0 commit comments