/** * Alipay.com Inc. * Copyright (c) 2004-2012 All Rights Reserved. */ package com.alipay.zdal.datasource.transaction; /** * The NotSupportedException exception indicates that an operation is not * supported. * * For example, the {@link TransactionManager#begin()} and * {@link UserTransaction#begin()} methods throw this exception if the * calling thread is already associated with a transaction, and nested * transactions are not supported. * * @version $Revision: 37390 $ */ public class NotSupportedException extends Exception { /** * Creates a new <code>NotSupportedException</code> without a * detail message. */ public NotSupportedException() { } /** * Constructs an <code>NotSupportedException</code> with the specified * detail message. * * @param msg the detail message. */ public NotSupportedException(String msg) { super(msg); } }