コード例 #1
0
 @SuppressWarnings("unchecked")
 public <T> UserCodeWrapper<T> getStubWrapper(ClassLoader cl) {
   try {
     return (UserCodeWrapper<T>)
         InstantiationUtil.readObjectFromConfig(this.config, STUB_OBJECT, cl);
   } catch (ClassNotFoundException e) {
     throw new CorruptConfigurationException(
         "Could not read the user code wrapper: " + e.getMessage(), e);
   } catch (IOException e) {
     throw new CorruptConfigurationException(
         "Could not read the user code wrapper: " + e.getMessage(), e);
   }
 }