* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / libjava / javax / transaction / RollbackException.java
blob7bc77eeaa1304cc63d2fae57244f612675675979
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 RollbackException extends java.lang.Exception
18 public RollbackException ()
20 super();
23 public RollbackException (String msg)
25 super(msg);