clowne-rb/clowne

View on GitHub
lib/clowne/adapters/sequel/specifications/after_persist_does_not_support.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Clowne
  module Adapters
    class Sequel
      module Specifications # :nodoc: all
        class AfterPersistDoesNotSupportException < StandardError
          def message
            "Sequel adapter does not support after_persist callback"
          end
        end
      end
    end
  end
end