Package org.sprimaudi.exception

Examples of org.sprimaudi.exception.NonWorkflowDocumentException


        if (doc == null || user == null) {
            return;
        }
        Workflow w = doc.getWorkflow();
        if (w == null) {
            throw new NonWorkflowDocumentException("This document has no workflow information set");
        }
        checkout(w, user);
    }
View Full Code Here

TOP

Related Classes of org.sprimaudi.exception.NonWorkflowDocumentException

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.