summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-04-25 13:30:30 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-04-25 13:30:30 -0300
commit2f934ce22f18d2fa12a849014db541e133e1b3d1 (patch)
treeaed0176494d266251f1c5b094fb35da26d34a191
parent7df974c433a7d675a2dcb2dab1063e61686476ec (diff)
downloadgitlab-ce-2f934ce22f18d2fa12a849014db541e133e1b3d1.tar.gz
Remove the Github::Error base class
-rw-r--r--lib/github/error.rb3
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