@bitrix24/b24jssdk
Version:
Bitrix24 REST API JavaScript SDK
32 lines (30 loc) • 754 B
JavaScript
/**
* @package @bitrix24/b24jssdk
* @version 1.0.1
* @copyright (c) 2026 Bitrix24
* @license MIT
* @see https://github.com/bitrix24/b24jssdk
* @see https://bitrix24.github.io/b24jssdk/
*/
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
class ErrorNotConnected extends Error {
static {
__name(this, "ErrorNotConnected");
}
constructor(message) {
super(message);
this.name = "ErrorNotConnected";
}
}
class ErrorTimeout extends Error {
static {
__name(this, "ErrorTimeout");
}
constructor(message) {
super(message);
this.name = "ErrorTimeout";
}
}
export { ErrorNotConnected, ErrorTimeout };
//# sourceMappingURL=errors.mjs.map