mirror of https://github.com/apache/openjpa.git
OPENJPA-366 - Add message text to InternalException.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/1.0.x@581609 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc2b032223
commit
89744de0b9
|
@ -1733,7 +1733,7 @@ public class BrokerImpl
|
|||
detachAllInternal(null);
|
||||
}
|
||||
if (_operationCount < 1)
|
||||
throw new InternalException();
|
||||
throw new InternalException(_loc.get("multi-threaded-access"));
|
||||
return _operationCount == 1;
|
||||
} catch (OpenJPAException ke) {
|
||||
throw ke;
|
||||
|
|
|
@ -375,3 +375,7 @@ to remove the @GeneratedValue annotation or modify the code to remove the \
|
|||
initializer processing.
|
||||
invalid-tran-status: The transaction was not in a valid state ({0}) to \
|
||||
accept the "{1}" method invocation. Processing will continue.
|
||||
multi-threaded-access: Multiple concurrent threads attempted to access a \
|
||||
single broker. By default brokers are not thread safe, if you require \
|
||||
and/or intent a broker to be accessed by more then one thread, set the \
|
||||
openjpa.Multithreaded property to true to override the default behavior.
|
||||
|
|
Loading…
Reference in New Issue