1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.object.bytecode; 5 6 /** 7 * A placeholder for the old DSOClassLoader. This is to allow old programs that say 8 * -Djava.system.class.loader=com.tc.object.bytecode.DSOClassLoader to actually be able to start and print the warning 9 */ 10 public class DSOClassLoader extends ClassLoader { 11 12 public DSOClassLoader(ClassLoader parent) { 13 super(parent); 14 System.out.println("WARNING: The DSOClassLoader should no longer be used as the java system classloader"); 15 } 16 17 } 18