module ActiveFedora::Validations
def save!(options={})
Attempts to save the record just like Base#save but will raise a +RecordInvalid+ exception instead of returning false
def save!(options={}) perform_validations(options) ? super : raise(RecordInvalid.new(self)) end