@smash-sdk/iam
Version:
27 lines • 934 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GatewayTimeoutError = exports.BadGatewayError = exports.InternalServerError = exports.NotFoundError = exports.UnauthorizedError = void 0;
const core_1 = require("@smash-sdk/core");
class UnauthorizedError extends core_1.SDKError {
}
exports.UnauthorizedError = UnauthorizedError;
class NotFoundError extends core_1.SDKError {
}
exports.NotFoundError = NotFoundError;
class InternalServerError extends core_1.SDKError {
}
exports.InternalServerError = InternalServerError;
class BadGatewayError extends core_1.SDKError {
}
exports.BadGatewayError = BadGatewayError;
class GatewayTimeoutError extends core_1.SDKError {
}
exports.GatewayTimeoutError = GatewayTimeoutError;
exports.default = {
UnauthorizedError,
NotFoundError,
InternalServerError,
BadGatewayError,
GatewayTimeoutError,
};
//# sourceMappingURL=GetAccountError.js.map