I have a model with four fields that all have null=True defined. I'd like to prevent creation of an entirely null model; I'd rather not use a form validator since I want this to work with the default admin.
If I override the save() method to do a check, what do I raise on an error?