Package net.sf.rej.java

Examples of net.sf.rej.java.ClassParsingException


                byte[] data = classLocator.getFileSet().getData(
                        classLocator.getFile());
                ClassFile cf = Disassembler.readClass(data);
                return cf;
            } catch (Exception e) {
                throw new ClassParsingException("Error opening file "
                        + classLocator.dumpDetails(), e);
            }
        }
    }
View Full Code Here


        try {
            ClassFile cf = Disassembler.readClass(data);
            this.cache.put(filename, new SoftReference<ClassFile>(cf));
            return cf;
        } catch (Exception e) {
            throw new ClassParsingException("Error parsing class file " + this.file + " : " + e.getMessage(), e);
        }
    }
View Full Code Here

TOP

Related Classes of net.sf.rej.java.ClassParsingException

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.