Package net.grinder.script

Examples of net.grinder.script.InvalidContextException


   * Package scope for unit tests.
   */
  static final class InvalidThreadStarter implements ThreadStarter {
    @Override
    public int startThread(final Object testRunner) throws InvalidContextException {
      throw new InvalidContextException("You should not start worker threads until the main thread has "
          + "initialised the script engine, or after all other threads have "
          + "shut down. Typically, you should only call startWorkerThread() "
          + "from another worker thread.");
    }
View Full Code Here

TOP

Related Classes of net.grinder.script.InvalidContextException

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.