@smash-sdk/domain
Version:
Smash Sdk Domain
23 lines (22 loc) • 758 B
TypeScript
import { SDKError } from "@smash-sdk/core";
export declare class InvalidParameterError extends SDKError {
}
export declare class UnauthorizedError extends SDKError {
}
export declare class NotFoundError 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;
NotFoundError: typeof NotFoundError;
InternalServerError: typeof InternalServerError;
BadGatewayError: typeof BadGatewayError;
GatewayTimeoutError: typeof GatewayTimeoutError;
};
export default _default;