Package de.danet.an.workflow.omgcore

Examples of de.danet.an.workflow.omgcore.InvalidResourceException


    /* Comment copied from interface */
    public void setAssignee (WfResource newValue)
  throws RemoteException, InvalidResourceException {
  if (newValue == null) {
      throw new InvalidResourceException ();
  }
  try {
      ((Activity)activity).changeAssignment(assignee(), newValue);
  } catch (NotAssignedException e) {
      throw (InvalidResourceException)
    (new InvalidResourceException ()).initCause (e);
  } catch (AlreadyAssignedException e) {
      throw (InvalidResourceException)
    (new InvalidResourceException ()).initCause (e);
  }
    }
View Full Code Here

TOP

Related Classes of de.danet.an.workflow.omgcore.InvalidResourceException

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.