diff -r 6ad7fd5f4746 -r 98aafceddece jdk/src/java.transaction/share/classes/javax/transaction/TransactionRequiredException.java --- a/jdk/src/java.transaction/share/classes/javax/transaction/TransactionRequiredException.java Thu Apr 16 10:44:23 2015 -0700 +++ b/jdk/src/java.transaction/share/classes/javax/transaction/TransactionRequiredException.java Thu Apr 16 11:33:59 2015 -0700 @@ -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 @@ @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); }