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