mirror of
https://github.com/openjdk/jdk.git
synced 2026-03-03 04:30:06 +00:00
8077991: Missing javadoc in exceptions types in javax.transaction
Reviewed-by: rriggs, lancea, alanb
This commit is contained in:
parent
1090355e9b
commit
afdabb44dc
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -39,10 +39,17 @@ package javax.transaction;
|
||||
@SuppressWarnings("serial") // serialVersionUID intentionally omitted
|
||||
public class InvalidTransactionException extends java.rmi.RemoteException {
|
||||
|
||||
/**
|
||||
* Constructs an {@code InvalidTransactionException}.
|
||||
*/
|
||||
public InvalidTransactionException() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs an {@code InvalidTransactionException}.
|
||||
* @param msg the detail message
|
||||
*/
|
||||
public InvalidTransactionException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -38,10 +38,17 @@ package javax.transaction;
|
||||
@SuppressWarnings("serial") // serialVersionUID intentionally omitted
|
||||
public class TransactionRequiredException extends java.rmi.RemoteException {
|
||||
|
||||
/**
|
||||
* Constructs a {@code TransactionRequiredException}.
|
||||
*/
|
||||
public TransactionRequiredException() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a {@code TransactionRequiredException}.
|
||||
* @param msg the detail message
|
||||
*/
|
||||
public TransactionRequiredException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -41,10 +41,17 @@ package javax.transaction;
|
||||
@SuppressWarnings("serial") // serialVersionUID intentionally omitted
|
||||
public class TransactionRolledbackException extends java.rmi.RemoteException {
|
||||
|
||||
/**
|
||||
* Constructs a {@code TransactionRolledbackException}.
|
||||
*/
|
||||
public TransactionRolledbackException() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a {@code TransactionRolledbackException}.
|
||||
* @param msg the detail message
|
||||
*/
|
||||
public TransactionRolledbackException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user