aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/lib/java/security/spec
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2007-02-15 18:29:25 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2007-02-15 18:29:25 +0000
commiteab79d78e7b90cd54fd93260e5c7b9816a8dd251 (patch)
tree484d29ba7a8692c6d0bf553ba07ab9b925eb8d49 /libjava/classpath/lib/java/security/spec
parent7f40378f06a5723ede9c8abc23775cadcdd0037c (diff)
downloadgcc-eab79d78e7b90cd54fd93260e5c7b9816a8dd251.zip
gcc-eab79d78e7b90cd54fd93260e5c7b9816a8dd251.tar.gz
gcc-eab79d78e7b90cd54fd93260e5c7b9816a8dd251.tar.bz2
jump.c: Remove prototypes for delete_computation and delete_prior_computation.
* jump.c: Remove prototypes for delete_computation and delete_prior_computation. From-SVN: r122011
Diffstat (limited to 'libjava/classpath/lib/java/security/spec')
0 files changed, 0 insertions, 0 deletions
utable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package java.security; /** * This exception is thrown when a problem is encountered with a * digital signature. * * @author Aaron M. Renn <arenn@urbanophile.com> * @status updated to 1.4 */ public class SignatureException extends GeneralSecurityException { /** * Compatible with JDK 1.1+. */ private static final long serialVersionUID = 7509989324975124438L; /** * Create an instance with no descriptive error message. */ public SignatureException() { } /** * Create an instance with a descriptive error message. * * @param msg the message */ public SignatureException(String msg) { super(msg); } }