View Javadoc

1   package com.tapina.robe.swi.clib;
2   
3   /***
4    * Created by IntelliJ IDEA.
5    * User: gareth
6    * Date: 05-May-2005
7    * Time: 22:42:32
8    * To change this template use File | Settings | File Templates.
9    */
10  public class UnknownSharedLibraryCall extends RuntimeException {
11      public UnknownSharedLibraryCall(int chunkId, int stubId) {
12          super("Attempt to call unknown shared library stub " + chunkId + "/&" + Integer.toHexString(stubId));
13      }
14  }