diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-25 13:30:30 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-25 13:30:30 -0300 |
commit | 2f934ce22f18d2fa12a849014db541e133e1b3d1 (patch) | |
tree | aed0176494d266251f1c5b094fb35da26d34a191 /lib | |
parent | 7df974c433a7d675a2dcb2dab1063e61686476ec (diff) | |
download | gitlab-ce-2f934ce22f18d2fa12a849014db541e133e1b3d1.tar.gz |
Remove the Github::Error base class
Diffstat (limited to 'lib')
-rw-r--r-- | lib/github/error.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/github/error.rb b/lib/github/error.rb index dfca3a18f9c..66d7afaa787 100644 --- a/lib/github/error.rb +++ b/lib/github/error.rb @@ -1,4 +1,3 @@ module Github - Error = Class.new(StandardError) - RepositoryFetchError = Class.new(Github::Error) + RepositoryFetchError = Class.new(StandardError) end |