6869707172737475
} catch (ConverterException ce) { throw ce; } catch (Exception e) { throw new ConverterException("Error converting Bean with class " + object.getClass().getName(), e); } }
4142434445464748
converter.convertAnother(result); } } catch(Throwable e) { throw e instanceof ConverterException ? (ConverterException)e : new ConverterException("Error invoking toXML method of object with class " + object.getClass().getName(),e); } }
899091929394959697
} converter.setTarget(target); return converter; } catch (Exception e) { throw new ConverterException("Initialization of Converter Object " + converterClass.getName() + " failed for target " + target.getClass().getName(), e); } }
160161162163164165166
return DefaultGroovyMethods.asType(delegate, clazz); } public static ConverterException resolveConverterException(Throwable t) { return t instanceof ConverterException ? (ConverterException) t : new ConverterException(t); }