@smash-sdk/domain
Version:
Smash Sdk Domain
26 lines (25 loc) • 918 B
TypeScript
import { SDKError } from "@smash-sdk/core";
export declare class InvalidParameterError extends SDKError {
}
export declare class UnauthorizedError extends SDKError {
}
export declare class InvalidSubscriptionError extends SDKError {
}
export declare class DomainAlreadyExistError extends SDKError {
}
export declare class InternalServerError extends SDKError {
}
export declare class BadGatewayError extends SDKError {
}
export declare class GatewayTimeoutError extends SDKError {
}
declare const _default: {
InvalidParameterError: typeof InvalidParameterError;
UnauthorizedError: typeof UnauthorizedError;
InvalidSubscriptionError: typeof InvalidSubscriptionError;
DomainAlreadyExistError: typeof DomainAlreadyExistError;
InternalServerError: typeof InternalServerError;
BadGatewayError: typeof BadGatewayError;
GatewayTimeoutError: typeof GatewayTimeoutError;
};
export default _default;