summaryrefslogtreecommitdiffstats
path: root/app/models/auth_source.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-05-21 23:53:10 +0000
committerGo MAEDA <maeda@farend.jp>2019-05-21 23:53:10 +0000
commit6d6ea928c83b0d3ac92853e313f0859accf6e355 (patch)
tree8dee8ba5c69df714533e7a2661506cda6fa2aeb2 /app/models/auth_source.rb
parentc9a3c6c7fd212595ae911700b6abdec7e851ee81 (diff)
downloadredmine-6d6ea928c83b0d3ac92853e313f0859accf6e355.tar.gz
redmine-6d6ea928c83b0d3ac92853e313f0859accf6e355.zip
Custom Exception classes should inherit StandardError instead of Exception (#31387).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@18187 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/auth_source.rb')
-rw-r--r--app/models/auth_source.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/auth_source.rb b/app/models/auth_source.rb
index c622b1853..b4bf18f5e 100644
--- a/app/models/auth_source.rb
+++ b/app/models/auth_source.rb
@@ -19,7 +19,7 @@
# Generic exception for when the AuthSource can not be reached
# (eg. can not connect to the LDAP)
-class AuthSourceException < Exception; end
+class AuthSourceException < StandardError; end
class AuthSourceTimeoutException < AuthSourceException; end
class AuthSource < ActiveRecord::Base