module ActiveFedora::Validations

def save!(options={})

if the record is not valid.
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