aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/security')
-rw-r--r--libjava/java/security/SecureClassLoader.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/libjava/java/security/SecureClassLoader.java b/libjava/java/security/SecureClassLoader.java
new file mode 100644
index 0000000..b195035
--- /dev/null
+++ b/libjava/java/security/SecureClassLoader.java
@@ -0,0 +1,23 @@
+/* Copyright (C) 1998, 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 SecureClassLoader extends ClassLoader
+{
+ public SecureClassLoader ()
+ {
+ this (null);
+ }
+
+ public SecureClassLoader (ClassLoader parent)
+ {
+ super (parent);
+ }
+}
+