index.d.ts 1.9 KB

12345678910111213141516171819202122232425262728
  1. export { MissingApiTokenError } from './missing-api-token';
  2. export { FileFlagBadInputError } from './file-flag-bad-input';
  3. export { MissingTargetFileError } from './missing-targetfile-error';
  4. export { NoSupportedManifestsFoundError } from './no-supported-manifests-found';
  5. export { NoSupportedSastFiles } from './no-supported-sast-files-found';
  6. export { CustomError } from './custom-error';
  7. export { MonitorError } from './monitor-error';
  8. export { ValidationError } from './validation-error';
  9. export { ConnectionTimeoutError } from './connection-timeout-error';
  10. export { FailedToLoadPolicyError } from './failed-to-load-policy-error';
  11. export { PolicyNotFoundError } from './policy-not-found-error';
  12. export { InternalServerError } from './internal-server-error';
  13. export { FailedToGetVulnerabilitiesError } from './failed-to-get-vulnerabilities-error';
  14. export { FailedToGetVulnsFromUnavailableResource } from './failed-to-get-vulns-from-unavailable-resource';
  15. export { UnsupportedPackageManagerError } from './unsupported-package-manager-error';
  16. export { FailedToRunTestError } from './failed-to-run-test-error';
  17. export { TooManyVulnPaths } from './too-many-vuln-paths';
  18. export { AuthFailedError } from './authentication-failed-error';
  19. export { FeatureNotSupportedForOrgError } from './unsupported-feature-for-org-error';
  20. export { MissingOptionError } from './missing-option-error';
  21. export { MissingArgError } from './missing-arg-error';
  22. export { ExcludeFlagBadInputError } from './exclude-flag-bad-input';
  23. export { UnsupportedOptionCombinationError } from './unsupported-option-combination-error';
  24. export { FeatureNotSupportedByPackageManagerError } from './feature-not-supported-by-package-manager-error';
  25. export { DockerImageNotFoundError } from './docker-image-not-found-error';
  26. export { NotFoundError } from './not-found-error';
  27. export { errorMessageWithRetry } from './error-with-retry';
  28. export { FormattedCustomError } from './formatted-custom-error';