bipbop-webservice
Version:
Chamada aos serviços da BIPBOP via NodeJS ou pelo navegador.
63 lines (62 loc) • 3.33 kB
TypeScript
import ErrorCodes from "./error-codes";
import ExceptionInternalUserBlocked from "./exception-internal-user-blocked";
import ExceptionTableNotFound from "./exception-table-not-found";
import ExceptionNotFound from "./exception-not-found";
import ExceptionInvalidArgument from "./exception-invalid-argument";
import ExceptionMissingArgument from "./exception-missing-argument";
import ExceptionMultipleResultsFound from "./exception-multiple-results-found";
import ExceptionBlockedIp from "./exception-blocked-ip";
import ExceptionUnexpectedHttpCode from "./exception-unexpected-http-code";
import ExceptionRemoteSiteUnderMaintenance from "./exception-remote-site-under-maintenance";
import ExceptionAuthenticationFailure from "./exception-authentication-failure";
import ExceptionInternalServerError from "./exception-internal-server-error";
import ExceptionQueryLimit from "./exception-query-limit";
import ExceptionPasswordRequired from "./exception-password-required";
import ExceptionJusticeSecret from "./exception-justice-secret";
import ExceptionExpectedDataNotFound from "./exception-expected-data-not-found";
import ExceptionCaptchaBreakFailed from "./exception-captcha-break-failed";
import ExceptionInternalPushLabel from "./exception-internal-push-label";
import ExceptionUnderMaintenance from "./exception-under-maintenance";
import ExceptionSiteMessage from "./exception-site-message";
import ExceptionBlockedByConfig from "./exception-blocked-by-config";
import ExceptionLegalReview from "./exception-legal-review";
import ExceptionResourceUnavailable from "./exception-resource-unavailable";
import ExceptionInternalEmailUnchecked from "./exception-internal-email-unchecked";
import ExceptionInternalNotReady from "./exception-internal-not-ready";
import ExceptionOutdated from "./exception-outdated";
import ExceptionWithoutProceedings from "./exception-without-proceedings";
import ExceptionEmailUnchecked from "./exception-email-unchecked";
import ExceptionBlockedUser from "./exception-blocked-user";
import ExceptionUnknown from "./exception-unknown";
declare const Exceptions: {
0: typeof ExceptionInternalUserBlocked;
1: typeof ExceptionTableNotFound;
2: typeof ExceptionNotFound;
3: typeof ExceptionInvalidArgument;
4: typeof ExceptionMissingArgument;
5: typeof ExceptionMultipleResultsFound;
6: typeof ExceptionBlockedIp;
7: typeof ExceptionUnexpectedHttpCode;
8: typeof ExceptionRemoteSiteUnderMaintenance;
9: typeof ExceptionAuthenticationFailure;
11: typeof ExceptionInternalServerError;
12: typeof ExceptionQueryLimit;
20: typeof ExceptionPasswordRequired;
21: typeof ExceptionJusticeSecret;
24: typeof ExceptionExpectedDataNotFound;
25: typeof ExceptionCaptchaBreakFailed;
26: typeof ExceptionInternalPushLabel;
27: typeof ExceptionUnderMaintenance;
28: typeof ExceptionSiteMessage;
29: typeof ExceptionBlockedByConfig;
30: typeof ExceptionLegalReview;
31: typeof ExceptionResourceUnavailable;
32: typeof ExceptionInternalEmailUnchecked;
33: typeof ExceptionInternalNotReady;
1522: typeof ExceptionOutdated;
1523: typeof ExceptionWithoutProceedings;
1525: typeof ExceptionEmailUnchecked;
1526: typeof ExceptionBlockedUser;
1524: typeof ExceptionUnknown;
};
export default Exceptions;