instance method
translate_exception
Ruby on Rails 4.2.9
Since v3.2.22.5Signature
translate_exception(exception, message)
No documentation comment.
Parameters
-
exceptionreq -
messagereq
Source
# File activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb, line 773
def translate_exception(exception, message)
case error_number(exception)
when 1062
RecordNotUnique.new(message, exception)
when 1452
InvalidForeignKey.new(message, exception)
else
super
end
end
Defined in activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb line 773
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter