// laden der klasse, die die syntax des de enthaelt
Class c;
try {
c=Class.forName("org.kapott.hbci.datatypes.Syntax"+dataType,false,this.getClass().getClassLoader());
} catch (ClassNotFoundException e) {
throw new NoSuchSyntaxException(dataType,path);
}
// holen des constructors fuer diese klasse
Constructor con;
try {