* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / libjava / javax / transaction / TransactionRolledbackException.java
blob96dd8dda1b0d63a566523d6e3733585b05361067
1 /* Copyright (C) 2001 Free Software Foundation
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 package javax.transaction;
11 import java.rmi.RemoteException;
13 /**
14 * @author Tom Tromey <tromey@redhat.com>
15 * @date April 18, 2001
18 public class TransactionRolledbackException extends RemoteException
20 public TransactionRolledbackException ()
22 super();
25 public TransactionRolledbackException (String msg)
27 super(msg);