PersistFailedException

Indicates that the persistence of an object failed.

This exception is intended to represent an unexpected and non-recoverable condition (eg a unique/primary key/ foreign key constaint has been violated), and so is a subclass of UnrecoverableException . Throwing this exception will therefore result in (some sort of) error page being displayed to the user.

API

PersistFailedException.java
class PersistFailedException {
  PersistFailedException(String msg)
  PersistFailedException(Throwable cause)
  PersistFailedException(String msg, Throwable cause)
}