README.md in simple_auth-3.1.0 vs README.md in simple_auth-3.1.1

- old
+ new

@@ -93,9 +93,17 @@ ``` If you need to locate a record using such value, you can do it by calling `GlobalID::Locator.locate(session[:user_id])` +Finally, only `ActiveRecord::RecordNotFound` errors are trapped by SimpleAuth +(when ActiveRecord is available). If you locator raises a different exception, +add the error class to the list of known exceptions. + +```ruby +SimpleAuth::Session.record_not_found_exceptions << CustomNotFoundRecordError +``` + ### Logging out users Logging out a user is just as simple; all you have to do is calling the regular `reset_session`.