jdk/src/java.transaction/share/classes/javax/transaction/TransactionRolledbackException.java
changeset 29929 98aafceddece
parent 28298 7fca67ba0b9f
child 32849 a2a6b6d26059
equal deleted inserted replaced
29928:6ad7fd5f4746 29929:98aafceddece
     1 /*
     1 /*
     2  * Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    39  * fruitless
    39  * fruitless
    40  */
    40  */
    41 @SuppressWarnings("serial")             // serialVersionUID intentionally omitted
    41 @SuppressWarnings("serial")             // serialVersionUID intentionally omitted
    42 public class TransactionRolledbackException extends java.rmi.RemoteException {
    42 public class TransactionRolledbackException extends java.rmi.RemoteException {
    43 
    43 
       
    44     /**
       
    45      * Constructs a {@code TransactionRolledbackException}.
       
    46      */
    44     public TransactionRolledbackException() {
    47     public TransactionRolledbackException() {
    45         super();
    48         super();
    46     }
    49     }
    47 
    50 
       
    51     /**
       
    52      * Constructs a {@code TransactionRolledbackException}.
       
    53      * @param msg the detail message
       
    54      */
    48     public TransactionRolledbackException(String msg) {
    55     public TransactionRolledbackException(String msg) {
    49         super(msg);
    56         super(msg);
    50     }
    57     }
    51 }
    58 }