1 package org.jacorb.test.orb;2 3 import org.jacorb.test.ExceptionServerPOA;4 5 public class ExceptionServerImpl extends ExceptionServerPOA6 {7 8 public void throwRuntimeException(String message)9 {10 throw new RuntimeException (message);11 }12 13 }14