Package org.kapott.hbci.exceptions

Examples of org.kapott.hbci.exceptions.PredelimErrorException


            }

            // HBCIUtils.log("error string: "+res.toString(),HBCIUtils.LOG_ERR);
            // HBCIUtils.log("current: "+getPath()+":"+type+"("+minsize+","+maxsize+")="+value,HBCIUtils.LOG_ERR);
            // HBCIUtils.log("predelimiter mismatch (required:"+getPreDelim()+" found:"+temp.charAt(0)+")",HBCIUtils.LOG_ERR);
            throw new PredelimErrorException(getPath(),Character.toString(preDelim),Character.toString(temp.charAt(0)));
        }

        this.value=SyntaxDEFactory.getInstance().createSyntaxDE(getType(),getPath(),res,minsize,maxsize);

        String valueString=value.toString(0);
View Full Code Here

TOP

Related Classes of org.kapott.hbci.exceptions.PredelimErrorException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.