mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 15:10:04 +08:00
fac6189871
* Makefile.in: Rebuilt. * Makefile.am (ordinary_java_source_files): Add new security files. * java/security/NoSuchAlgorithmException.java, java/security/MessageDigest.java: New files. * include/javaprims.h: Add security namespace. From-SVN: r26536
23 lines
430 B
Java
23 lines
430 B
Java
/* Copyright (C) 1999 Cygnus Solutions
|
|
|
|
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);
|
|
}
|
|
}
|