138139140141142143144145146147
_log.warn(_loc.get("cft-exception-thrown", className), t); if (t instanceof RuntimeException) throw (RuntimeException) t; if (t instanceof IllegalClassFormatException) throw (IllegalClassFormatException) t; throw new GeneralException(t); } finally { _transforming = false; } }
185186187188189190191192
// class depends on; these will never be enhanced anyway return Boolean.FALSE; } catch (RuntimeException re) { throw re; } catch (Throwable t) { throw new GeneralException(t); } }
718719720721722723724725726727728
J2DoPrivHelper.newInstanceAction( getMetaData().getDescribedType())); } catch (Exception e) { if (e instanceof PrivilegedActionException) e = ((PrivilegedActionException) e).getException(); throw new GeneralException(e); } } else if (_oid == null) return; FieldMetaData fmd = getMetaData().getField(field);
444445446447448449450451
protected void parse(MetaDataParser parser, Collection files) { try { for (Iterator itr = files.iterator(); itr.hasNext();) parser.parse((File) itr.next()); } catch (IOException ioe) { throw new GeneralException(ioe); } }
819820821822823824825826827828
} return call.processReturn(oid, sm); } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } finally { endOperation(); } }
456457458459460461462463
protected void parse(MetaDataParser parser, Class[] cls) { try { for (int i = 0; i < cls.length; i++) parser.parse(cls[i], isParseTopDown()); } catch (IOException ioe) { throw new GeneralException(ioe); } }
477478479480481482483484
if (output == null) ser.serialize(flags); else ser.serialize(output, flags); } catch (IOException ioe) { throw new GeneralException(ioe); } }
612613614615616617618619
if (log.isTraceEnabled()) log.trace(_loc.get("found-pcs", String.valueOf(names.size()), String.valueOf(System.currentTimeMillis() - start))); return (names.isEmpty()) ? null : names; } catch (IOException ioe) { throw new GeneralException(ioe); } }
599600601602603604605606607608609
_compiled = compilationFromCache(); return _compiled; } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } finally { _compiling = false; _readOnly = readOnly; } }
738739740741742743744745
} return new MergedExecutor(es); } catch (OpenJPAException ke) { throw ke; } catch (RuntimeException re) { throw new GeneralException(re); } }