* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / libjava / javax / transaction / SystemException.java
blobe279acaca35f44e859ff4b09b277f0a0e1d17d1a
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 SystemException extends java.lang.Exception
18 public int errorCode;
20 public SystemException ()
22 super();
25 public SystemException (String msg)
27 super(msg);
30 public SystemException(int errcode)
32 super ();
33 this.errorCode = errcode;