Package it.polito.appeal.traci.TraCIException

Examples of it.polito.appeal.traci.TraCIException.UnexpectedData


    return respObjectID;
  }

  protected static void verify(String description, Object expected, Object actual) throws UnexpectedData {
    if(!actual.equals(expected))
      throw new UnexpectedData(description, expected, actual);
  }
View Full Code Here

TOP

Related Classes of it.polito.appeal.traci.TraCIException.UnexpectedData

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.