public Persistent create(Class classe) throws CreateException {
try {
this.persistent = (Persistent) classe.newInstance();
} catch (InstantiationException e) {
throw new CreateException(e.getMessage());
} catch (IllegalAccessException e) {
throw new CreateException(e.getMessage());
}
return this.persistent;
}