bipbop-webservice
Version:
Chamada aos serviços da BIPBOP via NodeJS ou pelo navegador.
65 lines (62 loc) • 3.98 kB
text/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";
const Exceptions = {
[]: ExceptionInternalUserBlocked,
[]: ExceptionTableNotFound,
[]: ExceptionNotFound,
[]: ExceptionInvalidArgument,
[]: ExceptionMissingArgument,
[]: ExceptionMultipleResultsFound,
[]: ExceptionBlockedIp,
[]: ExceptionUnexpectedHttpCode,
[]: ExceptionRemoteSiteUnderMaintenance,
[]: ExceptionAuthenticationFailure,
[]: ExceptionInternalServerError,
[]: ExceptionQueryLimit,
[]: ExceptionPasswordRequired,
[]: ExceptionJusticeSecret,
[]: ExceptionExpectedDataNotFound,
[]: ExceptionCaptchaBreakFailed,
[]: ExceptionInternalPushLabel,
[]: ExceptionUnderMaintenance,
[]: ExceptionSiteMessage,
[]: ExceptionBlockedByConfig,
[]: ExceptionLegalReview,
[]: ExceptionResourceUnavailable,
[]: ExceptionInternalEmailUnchecked,
[]: ExceptionInternalNotReady,
[]: ExceptionOutdated,
[]: ExceptionWithoutProceedings,
[]: ExceptionEmailUnchecked,
[]: ExceptionBlockedUser,
[]: ExceptionUnknown,
}
export default Exceptions;