Package test

Examples of test.TestBridgeException


  }
 
  public void call(/*IN*/String s, /*IN*/int nToDo) throws TestBridgeException, com.sun.star.uno.RuntimeException {
    if(nToDo < 0) {
      System.err.println("##### CallMe_Impl.call: throwing exception...");
      throw new TestBridgeException("CallMe_Impl - TestBridgeException", this);
    }
 
    String sDummy = "";
    if(nToDo == 0)
      System.err.println(s);
View Full Code Here

TOP

Related Classes of test.TestBridgeException

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.