sevenview/votd

View on GitHub
lib/votd/votd_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Votd
  # Votd exception class. This will be thrown on errors returned
  # by Votd.
  class VotdError < StandardError
  end

  class InvalidBibleVersion < VotdError
  end
end