Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import cs.ttu.ee.BookShopApi;
- import cs.ttu.ee.BookStoreApiException;
- public class test {
- public static void main(String args[]) {
- BookShopApi a = new BookShopApi();
- try {
- System.out.println(a.getBookByName("Tõde ja õigus"));
- } catch (BookStoreApiException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement