You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
862 B
35 lines
862 B
package com.fr.third.javax.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$ |
|
*/ |
|
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); |
|
} |
|
}
|
|
|