Package de.danet.an.workflow.omgcore

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


                logger.warn("Call to complete() ignored because " + toString()
                        + " has already been abandoned (probably called "
                        + "by tool that could not be terminated).");
                return;
            }
      throw new CannotCompleteException(toString() + " is " + state());
  }
  if (getPaPreliminarilyChosen ()) {
      try {
    choose ();
      } catch (TransitionNotAllowedException e) {
View Full Code Here


  } catch (NoSuchObjectException e) {
      logger.warn
    (act + " does not exist any more "
     + "(mapped to CannotCompleteException): " + e.getMessage());
      logger.debug ("Stacktrace:", e);
      throw new CannotCompleteException (act + ": " + e.getMessage());
  } catch (RemoteException e) {
      throw new EJBException (e);
  } catch (RuntimeException e) {
      logger.warn
    ("RuntimeException while finishing " + act
     + "(mapped to CannotCompleteException): " + e.getMessage());
      logger.debug ("Stacktrace:", e);
      throw new CannotCompleteException (act + ": " + e.getMessage());
  }
    }
View Full Code Here

TOP

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

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.