Sources::Site#normalize_for_artist_finder! catches errors that occur
during the normalization process. However it only catches
StandardErrors, not Exceptions, so this makes Sources::Error a
StandardError.
This commit is contained in:
Toks
2014-12-09 17:14:28 -05:00
parent a8176a863d
commit e0b0760b39

View File

@@ -1,4 +1,4 @@
module Sources
class Error < Exception
class Error < StandardError
end
end