class PaperTrail::UnsupportedColumnType

The application’s database column type is not supported. @api public

Public Class Methods

new(method:, expected:, actual:) click to toggle source
Calls superclass method
# File lib/paper_trail/errors.rb, line 22
def initialize(method:, expected:, actual:)
  super(
    format(
      "%s expected %s column, got %s",
      method,
      expected,
      actual
    )
  )
end