Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/publish/common/errors.ts
6450 views
1
/*
2
* errors.ts
3
*
4
* Copyright (C) 2020-2024 Posit Software, PBC
5
*/
6
7
export const throwUnableToPublish = (reason: string, provider: string) => {
8
throw new Error(
9
`Unable to publish to ${provider} (${reason})`,
10
);
11
};
12
13