public class NonUniqueResultException extends PersistenceException
Query.getSingleResult() or TypedQuery.getSingleResult() is executed on a
 query and there is more than one result from the query. This
 exception will not cause the current transaction, if one is active,
 to be marked for rollback.Query.getSingleResult(), 
TypedQuery.getSingleResult(), 
Serialized Form| Constructor and Description | 
|---|
| NonUniqueResultException()Constructs a new  NonUniqueResultExceptionexception
 withnullas its detail message. | 
| NonUniqueResultException(java.lang.Exception cause)Constructs a new  NonUniqueResultExceptionexception
 withnullas its detail message. | 
| NonUniqueResultException(java.lang.String message)Constructs a new  NonUniqueResultExceptionexception
 with the specified detail message. | 
| NonUniqueResultException(java.lang.String message,
                        java.lang.Exception cause)Constructs a new  NonUniqueResultExceptionexception
 with the specified detail message. | 
public NonUniqueResultException()
NonUniqueResultException exception
 with null as its detail message.public NonUniqueResultException(java.lang.Exception cause)
NonUniqueResultException exception
 with null as its detail message.public NonUniqueResultException(java.lang.String message)
NonUniqueResultException exception
 with the specified detail message.message - the detail message.public NonUniqueResultException(java.lang.String message,
                                java.lang.Exception cause)
NonUniqueResultException exception
 with the specified detail message.message - the detail message.