Makefile.in: Rebuilt.

* 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
This commit is contained in:
Anthony Green 1999-04-18 08:24:30 +00:00 committed by Anthony Green
parent a3f2e0fcd3
commit fac6189871
7 changed files with 133 additions and 341 deletions

View file

@ -0,0 +1,22 @@
/* 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);
}
}