Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-04-25 19:30:30 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-04-25 19:30:30 +0300
commit2f934ce22f18d2fa12a849014db541e133e1b3d1 (patch)
treeaed0176494d266251f1c5b094fb35da26d34a191 /lib
parent7df974c433a7d675a2dcb2dab1063e61686476ec (diff)
Remove the Github::Error base class
Diffstat (limited to 'lib')
-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