Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #76 from syncrou/inherit_from_standard_error
Browse files Browse the repository at this point in the history
Inherit all errors from StandardError
  • Loading branch information
bdunne authored Feb 23, 2017
2 parents a2aa626 + acbb6a3 commit 3cc1c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible_tower_client/exception.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module AnsibleTowerClient
class Error < Exception; end
class Error < StandardError; end
class ClientError < Error; end
class NoMethodError < Error; end

Expand Down

0 comments on commit 3cc1c83

Please sign in to comment.