This class is a GigaSpacesException which meant to be used if something went wrong
596061626364656667
} genUid = remoteJSpace.getUniqueID(); } catch (RemoteException e) { throw new GigaSpacesException("Failed to generate uid for remote call.",e); } return genUid; }
919293949596979899
* @return the wrapped executed javaspace method result */ public Object execute(JavaSpaceCallback jsc) { if(getSpace() == null){ throw new GigaSpacesException("The space property is required and can not be null."); } return super.execute(jsc); }
735736737738739740741742743744745
{ ((IJSpace)js).dropClass(className); } catch (Exception e) { throw new GigaSpacesException("Failed to drop class",e); } return null; } }); }