class ActiveModel::StrictValidationFailed
Raised when a validation cannot be corrected by end users and are considered exceptional.
class Person include ActiveModel::Validations attr_accessor :name validates_presence_of :name, strict: true end person = Person.new person.name = nil person.valid? # => ActiveModel::StrictValidationFailed: Name can't be blank
© 2004–2019 David Heinemeier Hansson
Licensed under the MIT License.