* builtins.c (expand_builtin_memcmp): Optimize memcmp built-in
[official-gcc.git] / libjava / javax / transaction / NotSupportedException.java
blob767babbeba49c817b6c53fca5f1f7db75dc0c659
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 NotSupportedException extends java.lang.Exception
18 public NotSupportedException ()
20 super();
23 public NotSupportedException (String msg)
25 super(msg);