gioknx/loterias_caixa

View on GitHub
lib/exceptions.rb

Summary

Maintainability
A
0 mins
Test Coverage
module LoteriasCaixa
  class ContestNotFound < StandardError
    def initialize(msg="I couldn't reach the contest you're looking for")
      super
    end
  end
end