Advertisement
Guest User

Untitled

a guest
May 26th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. private Workspace getWorkspace(final String workspaceId) throws ResourcePluginException{
  2. Workspace workspace = workspaceResource.getWorkspace(workspaceId);
  3.  
  4. if (workspace == null) {
  5. throw new CabItemBuilderException(ResponseCode.WORKSPACE_NOT_FOUND, "Unable to retrieve workspace for workspace ID: " + workspaceId);
  6. }
  7.  
  8. return workspace;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement