* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / libjava / javax / transaction / TransactionRequiredException.java
blobe845a9ff0eb8b2b8609dd52a600ba5664a4bedca
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 TransactionRequiredException extends RemoteException
20 public TransactionRequiredException ()
22 super();
25 public TransactionRequiredException (String msg)
27 super(msg);