mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 15:59:26 +08:00
2ba5f77454
* All files: Updated copyright information. * COPYING: New file. * COPYING.LIB: Removed. * LIBGCJ_LICENSE: We now use GPL + special exception. From-SVN: r32387
23 lines
438 B
Java
23 lines
438 B
Java
/* Copyright (C) 1999 Free Software Foundation
|
|
|
|
This file is part of libgcj.
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
details. */
|
|
|
|
package java.security;
|
|
|
|
public class NoSuchAlgorithmException extends Exception
|
|
{
|
|
public NoSuchAlgorithmException()
|
|
{
|
|
super();
|
|
}
|
|
|
|
public NoSuchAlgorithmException(String msg)
|
|
{
|
|
super(msg);
|
|
}
|
|
}
|