diff options
author | Robert Speicher <robert@gitlab.com> | 2018-08-08 17:38:38 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2018-08-08 17:38:38 +0000 |
commit | 3aaf4751e09262c53544a1987f59b1308af9b6c1 (patch) | |
tree | 019332604ac4853db5d80bca95f229c95d1fc298 /lib/errors.rb | |
parent | c6577e0d75f51b017f2f332838b97c3ca5b497c0 (diff) | |
parent | 014691e057537a803e22223ea072065cc91938a7 (diff) | |
download | gitlab-shell-3aaf4751e09262c53544a1987f59b1308af9b6c1.tar.gz |
Merge branch 'ash.mckenzie/srp-refactor' into 'master'
Refactor that focuses on SRP improvements
See merge request gitlab-org/gitlab-shell!214
Diffstat (limited to 'lib/errors.rb')
-rw-r--r-- | lib/errors.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/errors.rb b/lib/errors.rb new file mode 100644 index 0000000..7bef3b4 --- /dev/null +++ b/lib/errors.rb @@ -0,0 +1,4 @@ +class UnknownError < StandardError; end +class AccessDeniedError < StandardError; end +class InvalidRepositoryPathError < StandardError; end +class DisallowedCommandError < StandardError; end |