diff options
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 |