Package: NoUniqueResultException
NoUniqueResultException
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
NoUniqueResultException(String) |
|
|
|
|
|
Coverage
1: /**
2: * Copyright (C) 2016 Czech Technical University in Prague
3: * <p>
4: * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
5: * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
6: * version.
7: * <p>
8: * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
9: * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
10: * details. You should have received a copy of the GNU General Public License along with this program. If not, see
11: * <http://www.gnu.org/licenses/>.
12: */
13: package cz.cvut.kbss.jopa.exceptions;
14:
15: import cz.cvut.kbss.jopa.model.query.Query;
16: import cz.cvut.kbss.jopa.model.query.TypedQuery;
17:
18: /**
19: * Thrown by the persistence provider when {@link Query#getSingleResult()} or {@link TypedQuery#getSingleResult()} is
20: * executed on a query and there is more than one result from the query.
21: * <p>
22: * This exception will not cause the current transaction, if one is active, to be marked for rollback.
23: */
24: public class NoUniqueResultException extends OWLPersistenceException {
25:
26: private static final long serialVersionUID = -6340735954399074847L;
27:
28: public NoUniqueResultException(String message) {
29: super(message);
30: }
31: }