MCPcopy Create free account
hub / github.com/cursor/community-plugins / UnscannableRepoError

Class UnscannableRepoError

apps/cursor/src/lib/plugins/scan.ts:63–68  ·  view source on GitHub ↗

* Terminal repo-fetch failure: GitHub deterministically refuses to serve the * archive (repo deleted/private/DMCA'd, or larger than our scan budget). * Re-fetching won't change the answer, so the scan resolves to a * "suspicious / manual review" verdict instead of retrying. Anything else * throw

Source from the content-addressed store, hash-verified

61 * cursor/community-plugins#395).
62 */
63class UnscannableRepoError extends Error {
64 constructor(message: string) {
65 super(message);
66 this.name = "UnscannableRepoError";
67 }
68}
69
70type ComponentRow = Pick<
71 PluginComponent,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected