Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* // Copyright (c) 1998, 2007, Oracle. All rights reserved.
*
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can obtain
* a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
* or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [year]
* [name of copyright owner]"
*
* Contributor(s):
*
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package oracle.toplink.essentials.exceptions;
import oracle.toplink.essentials.exceptions.i18n.ExceptionMessageGenerator;
import oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl;
public class TransactionException extends TopLinkException {
public static final int ERROR_DOING_JNDI_LOOKUP = 23001;
public static final int ERROR_GETTING_TRANSACTION_STATUS = 23002;
public static final int ERROR_GETTING_TRANSACTION = 23003;
public static final int ERROR_OBTAINING_TRANSACTION_MANAGER = 23004;
public static final int ERROR_BINDING_TO_TRANSACTION = 23005;
public static final int ERROR_BEGINNING_TRANSACTION = 23006;
public static final int ERROR_COMMITTING_TRANSACTION = 23007;
public static final int ERROR_ROLLING_BACK_TRANSACTION = 23008;
public static final int ERROR_MARKING_TRANSACTION_FOR_ROLLBACK = 23009;
public static final int ERROR_NO_EXTERNAL_TRANSACTION_ACTIVE = 23010;
public static final int ERROR_INACTIVE_UOW = 23011;
public static final int ERROR_NO_TRANSACTION_ACTIVE = 23012;
public static final int ERROR_TRANSACTION_IS_ACTIVE = 23013;
public static final int ENTITY_TRANSACTION_WITH_JTA_NOT_ALLOWED = 23014;
public static final int CANNOT_ENLIST_MULTIPLE_DATASOURCES = 23015;
public static final int EXCEPTION_IN_PROXY_EXECUTION= 23016;
public TransactionException(String message) {
super(message);
}
public TransactionException(String message, Exception internalException) {
super(message, internalException);
}
public static TransactionException jndiLookupException(String jndiName, Exception internalException) {
Object[] args = { jndiName };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_DOING_JNDI_LOOKUP, args));
ex.setErrorCode(ERROR_DOING_JNDI_LOOKUP);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException errorGettingExternalTransactionStatus(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_GETTING_TRANSACTION_STATUS, args));
ex.setErrorCode(ERROR_GETTING_TRANSACTION_STATUS);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException errorGettingExternalTransaction(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_GETTING_TRANSACTION, args));
ex.setErrorCode(ERROR_GETTING_TRANSACTION);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException errorBindingToExternalTransaction(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_BINDING_TO_TRANSACTION, args));
ex.setErrorCode(ERROR_BINDING_TO_TRANSACTION);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException errorBeginningExternalTransaction(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_BEGINNING_TRANSACTION, args));
ex.setErrorCode(ERROR_BEGINNING_TRANSACTION);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException errorCommittingExternalTransaction(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_COMMITTING_TRANSACTION, args));
ex.setErrorCode(ERROR_COMMITTING_TRANSACTION);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException errorRollingBackExternalTransaction(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_ROLLING_BACK_TRANSACTION, args));
ex.setErrorCode(ERROR_ROLLING_BACK_TRANSACTION);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException errorMarkingTransactionForRollback(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_MARKING_TRANSACTION_FOR_ROLLBACK, args));
ex.setErrorCode(ERROR_MARKING_TRANSACTION_FOR_ROLLBACK);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException externalTransactionNotActive() {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_NO_EXTERNAL_TRANSACTION_ACTIVE, args));
ex.setErrorCode(ERROR_NO_EXTERNAL_TRANSACTION_ACTIVE);
return ex;
}
public static TransactionException inactiveUnitOfWork(UnitOfWorkImpl unitOfWork) {
Object[] args = { unitOfWork };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_INACTIVE_UOW, args));
ex.setErrorCode(ERROR_INACTIVE_UOW);
return ex;
}
public static TransactionException errorObtainingTransactionManager(Exception internalException) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_OBTAINING_TRANSACTION_MANAGER, args));
ex.setErrorCode(ERROR_OBTAINING_TRANSACTION_MANAGER);
ex.setInternalException(internalException);
return ex;
}
public static TransactionException transactionNotActive() {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_NO_TRANSACTION_ACTIVE, args));
ex.setErrorCode(ERROR_NO_TRANSACTION_ACTIVE);
return ex;
}
public static TransactionException transactionIsActive() {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ERROR_TRANSACTION_IS_ACTIVE, args));
ex.setErrorCode(ERROR_TRANSACTION_IS_ACTIVE);
return ex;
}
public static TransactionException entityTransactionWithJTANotAllowed() {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, ENTITY_TRANSACTION_WITH_JTA_NOT_ALLOWED, args));
ex.setErrorCode(ENTITY_TRANSACTION_WITH_JTA_NOT_ALLOWED);
return ex;
}
public static TransactionException multipleResourceException() {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, CANNOT_ENLIST_MULTIPLE_DATASOURCES, args));
ex.setErrorCode(CANNOT_ENLIST_MULTIPLE_DATASOURCES);
return ex;
}
public static TransactionException internalProxyException(Exception ex1) {
Object[] args = { };
TransactionException ex = new TransactionException(ExceptionMessageGenerator.buildMessage(TransactionException.class, EXCEPTION_IN_PROXY_EXECUTION, args), ex1);
ex.setErrorCode(EXCEPTION_IN_PROXY_EXECUTION);
return ex;
}
}