Package de.danet.an.workflow.omgcore

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


     * @throws SourceNotAvailableException if the source is not available.
     */
    public WfExecutionObject source() throws SourceNotAvailableException {
  Object source = getSource();
        if (source == null || !(source instanceof WfExecutionObject)) {
            throw new SourceNotAvailableException();
        }
        return (WfExecutionObject)source;
    }
View Full Code Here

TOP

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

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.