Package abbot

Examples of abbot.BugReport


        }
        catch(ClassNotFoundException cnf) {
            //Log.debug("Class " + testerName + " not found");
        }
        catch(ClassCastException cce) {
            throw new BugReport("Class loader conflict: environment "
                                + ComponentTester.class.getClassLoader()
                                + " vs. " + testerClass.getClassLoader());
        }

        return tester;
View Full Code Here


            try {
                setStep(createStep());
                Log.log("Semantic event recorded");
            }
            catch(Throwable thr) {
                BugReport br = new BugReport("An error was encountered while "
                                             + "recording; the offending step "
                                             + "has been omitted.", thr);
                Log.log("Semantic recorder error: " + br.toString());
                setStatus("An error was encountered, see console for details");
                setRecordingType(SE_NONE);
                throw br;
            }
        }
View Full Code Here

TOP

Related Classes of abbot.BugReport

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.