* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / libjava / javax / transaction / HeuristicRollbackException.java
blob7ad3782710e9e967ce1d7f3211a15660ed32ea35
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 /**
12 * @author Warren Levy <warrenl@redhat.com>
13 * @date May 25, 2001
16 public class HeuristicRollbackException extends java.lang.Exception
18 public HeuristicRollbackException ()
20 super();
23 public HeuristicRollbackException (String msg)
25 super(msg);