Welcome to mirror list, hosted at ThFree Co, Russian Federation.

errors.js « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 225f4a5012915f1b1ae0156a0f94a532aad7fbb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import EncryptionNotEnabledError from "./Exception/Encryption/EncryptionNotEnabledError";
import InvalidEncryptedTextLength from "./Exception/Encryption/InvalidEncryptedTextLength";
import InvalidObjectTypeError from "./Exception/Encryption/InvalidObjectTypeError";
import MissingEncryptionKeyError from "./Exception/Encryption/MissingEncryptionKeyError";
import UnsupportedEncryptionTypeError from "./Exception/Encryption/UnsupportedEncryptionTypeError";
import BadGatewayError from "./Exception/Http/BadGatewayError";
import BadRequestError from "./Exception/Http/BadRequestError";
import ForbiddenError from "./Exception/Http/ForbiddenError";
import GatewayTimeoutError from "./Exception/Http/GatewayTimeoutError";
import HttpError from "./Exception/Http/HttpError";
import InternalServerError from "./Exception/Http/InternalServerError";
import MethodNotAllowedError from "./Exception/Http/MethodNotAllowedError";
import NotFoundError from "./Exception/Http/NotFoundError";
import ServiceUnavailableError from "./Exception/Http/ServiceUnavailableError";
import TooManyRequestsError from "./Exception/Http/TooManyRequestsError";
import UnauthorizedError from "./Exception/Http/UnauthorizedError";
import InvalidLink from "./Exception/PassLink/InvalidLink";
import UnknownAction from "./Exception/PassLink/UnknownAction";
import ChallengeTypeNotSupported from "./Exception/ChallengeTypeNotSupported";
import ConfigurationError from "./Exception/ConfigruationError";
import InvalidScopeError from "./Exception/InvalidScopeError";
import NetworkError from "./Exception/NetworkError";
import ResponseContentTypeError from "./Exception/ResponseContentTypeError";
import ResponseDecodingError from "./Exception/ResponseDecodingError";
import TokenTypeNotSupported from "./Exception/TokenTypeNotSupported";
import UnknownPropertyError from "./Exception/UnknownPropertyError";

export {
    EncryptionNotEnabledError,
    InvalidEncryptedTextLength,
    InvalidObjectTypeError,
    MissingEncryptionKeyError,
    UnsupportedEncryptionTypeError,
    BadGatewayError,
    BadRequestError,
    ForbiddenError,
    GatewayTimeoutError,
    HttpError,
    InternalServerError,
    MethodNotAllowedError,
    NotFoundError,
    ServiceUnavailableError,
    TooManyRequestsError,
    UnauthorizedError,
    InvalidLink,
    UnknownAction,
    ChallengeTypeNotSupported,
    ConfigurationError,
    InvalidScopeError,
    NetworkError,
    ResponseContentTypeError,
    ResponseDecodingError,
    TokenTypeNotSupported,
    UnknownPropertyError
};