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.
5 lines
55 B
Ruby
5 lines
55 B
Ruby
module Sources
|
|
class Error < StandardError
|
|
end
|
|
end
|