diff options
author | Ash McKenzie <amckenzie@gitlab.com> | 2018-07-25 21:52:09 +1000 |
---|---|---|
committer | Ash McKenzie <amckenzie@gitlab.com> | 2018-07-25 22:01:39 +1000 |
commit | cf27364efc75388de805adc368eb6124c180b1b4 (patch) | |
tree | e4c807551cf0f1b4354c6ffd13fb3e7b6f9b6298 /lib/gitlab_shell.rb | |
parent | 280afd6a884841ce028934798e7409c566116381 (diff) | |
download | gitlab-shell-cf27364efc75388de805adc368eb6124c180b1b4.tar.gz |
Move dupe exception classes into errors.rb
Diffstat (limited to 'lib/gitlab_shell.rb')
-rw-r--r-- | lib/gitlab_shell.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb index 963a433..10a9256 100644 --- a/lib/gitlab_shell.rb +++ b/lib/gitlab_shell.rb @@ -1,6 +1,7 @@ require 'shellwords' require 'pathname' +require_relative 'errors' require_relative 'gitlab_net' require_relative 'gitlab_metrics' require_relative 'current_user_helper' @@ -12,7 +13,6 @@ class GitlabShell include APICommandHelper include LogHelper - class AccessDeniedError < StandardError; end class DisallowedCommandError < StandardError; end class InvalidRepositoryPathError < StandardError; end |