erzeugt worden sein */
public HBCIHandler(String hbciversion,HBCIPassport passport)
{
try {
if (passport==null)
throw new InvalidArgumentException(HBCIUtilsInternal.getLocMsg("EXCMSG_PASSPORT_NULL"));
if (hbciversion==null) {
hbciversion=passport.getHBCIVersion();
}
if (hbciversion.length()==0)
throw new InvalidArgumentException(HBCIUtilsInternal.getLocMsg("EXCMSG_NO_HBCIVERSION"));
this.kernel=new HBCIKernelImpl(this,hbciversion);
this.passport=(HBCIPassportInternal)passport;
this.passport.setParentHandlerData(this);