Files
danbooru/app/logical/sources/error.rb
Toks e0b0760b39 should fix #2320
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.
2014-12-09 17:14:28 -05:00

5 lines
55 B
Ruby

module Sources
class Error < StandardError
end
end