Remove the Github::Error base class

This commit is contained in:
Douglas Barbosa Alexandre 2017-04-25 13:30:30 -03:00
parent 7df974c433
commit 2f934ce22f

View file

@ -1,4 +1,3 @@
module Github
Error = Class.new(StandardError)
RepositoryFetchError = Class.new(Github::Error)
RepositoryFetchError = Class.new(StandardError)
end