nbulaj/alpha_card

View on GitHub
lib/alpha_card/errors/validation_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# typed: strong
module AlphaCard
  ##
  # Exception class for invalid Alpha Card objects.
  # Raises when some of the object doesn't have all
  # the necessary attributes.
  class ValidationError < StandardError
  end
end