moonleerecords/moonlee-website

View on GitHub
app/lib/exceptions/songkick_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Exceptions
  class SongkickError < StandardError
    def initialize(msg = 'Error while fetching events from Songkick')
      super
    end
  end
end