berkes/postgres_key_value

View on GitHub
lib/postgres_key_value/errors.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module PostgresKeyValue
  class Error < StandardError; end
  class KeyLimitExceeded < StandardError; end
  class InvalidKey < StandardError; end
end