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