Skip to content
Snippets Groups Projects
Select Git revision
  • 4feec0167b01dc854c64b580117dbe8b71240d02
  • master default protected
  • dependabot/go_modules/k8s.io/client-go-0.32.2
  • dependabot/go_modules/k8s.io/apimachinery-0.32.2
  • dependabot/go_modules/sigs.k8s.io/controller-runtime-0.20.2
  • dependabot/go_modules/k8s.io/api-0.30.3
  • gh-pages
  • v0.19.1
  • v0.19.0
  • v0.18.1
  • v0.18.0
  • v0.17.0
  • v0.16.0
  • v0.15.1
  • v0.15.0
  • v0.14.0
  • v0.13.0
  • v0.12.0
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.0
  • v0.5.0
  • v0.4.0
26 results

PROJECT

Blame
  • error-messages.ts 1.73 KiB
    // System error
    export const SYSTEM_INSUFFICIENT_DISK_SPACE = 'disk-space';
    export const SYSTEM_INSUFFICIENT_MEMORY = 'out-of-memory';
    
    // Platform Error
    export const PLATFORM_AUTHENTICATION_ERROR = 'authentication-error';
    export const PLATFORM_BAD_CREDENTIALS = 'bad-credentials';
    export const PLATFORM_FAILURE = 'platform-failure';
    export const PLATFORM_INTEGRATION_UNAUTHORIZED = 'integration-unauthorized';
    export const PLATFORM_NOT_FOUND = 'platform-not-found';
    export const PLATFORM_RATE_LIMIT_EXCEEDED = 'rate-limit-exceeded';
    
    // Config Error
    export const CONFIG_VALIDATION = 'config-validation';
    
    // Repository Error
    export const REPOSITORY_ACCESS_FORBIDDEN = 'forbidden';
    export const REPOSITORY_ARCHIVED = 'archived';
    export const REPOSITORY_BLOCKED = 'blocked';
    export const REPOSITORY_CANNOT_FORK = 'cannot-fork';
    export const REPOSITORY_CHANGED = 'repository-changed';
    export const REPOSITORY_DISABLED = 'disabled';
    export const REPOSITORY_EMPTY = 'empty';
    export const REPOSITORY_FORKED = 'fork';
    export const REPOSITORY_MIRRORED = 'mirror';
    export const REPOSITORY_NOT_FOUND = 'not-found';
    export const REPOSITORY_NO_VULNERABILITY = 'no-vulnerability-alerts';
    export const REPOSITORY_RENAMED = 'renamed';
    export const REPOSITORY_TEMPORARY_ERROR = 'temporary-error';
    export const REPOSITORY_UNINITIATED = 'uninitiated';
    
    // Manager Error
    export const MANAGER_LOCKFILE_ERROR = 'lockfile-error';
    export const MANAGER_NO_PACKAGE_FILES = 'no-package-files';
    
    // Datasource error
    export const DATASOURCE_FAILURE = 'registry-failure';
    
    // Worker Error
    export const WORKER_FILE_UPDATE_FAILED = 'update-failure';
    
    // Bundler Error
    export const BUNDLER_INVALID_CREDENTIALS = 'bundler-credentials';
    
    // Unknown Error
    export const UNKNOWN_ERROR = 'unknown-error';