Package br.eti.kinoshita.selenium.util

Examples of br.eti.kinoshita.selenium.util.SeleniumWebTestException


        }
       
        // TBD: verify if it's really ok to throw this exception here
        if ( tableArray.length <= 0 )
        {
          throw new SeleniumWebTestException("Empty excel data.");
        }
       
      return tableArray;
    }
    catch ( IOException ioe )
    {
      LOGGER.error("IO Exception retrieving table array from Excel: " + ioe.getMessage(), ioe);
      throw new SeleniumWebTestException(ioe);
    }
    catch ( BiffException be )
    {
      LOGGER.error("Internal error retrieving table array from Excel: " + be.getMessage(), be);
      throw new SeleniumWebTestException(be);
    }
  } 
View Full Code Here

TOP

Related Classes of br.eti.kinoshita.selenium.util.SeleniumWebTestException

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.