cgriego/active_attr

View on GitHub
lib/active_attr/typecasting/unknown_typecaster_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "active_attr/error"

module ActiveAttr
  module Typecasting
    # This exception is raised if attempting to cast to an unknown type when
    # using {Typecasting}
    #
    # @since 0.6.0
    class UnknownTypecasterError < TypeError
      include Error
    end
  end
end