Examples of ActionException


Examples of it.geosolutions.geobatch.flow.event.action.ActionException

            default:
                LOGGER.error("Single output file expected: found more than one:");
                for (FileSystemEvent ev : outQueue) {
                    LOGGER.error(" event: " + ev);
                }
                throw new ActionException(a, "Got more than one output file: " + outQueue);
        }
    }
View Full Code Here

Examples of net.customware.gwt.dispatch.shared.ActionException

                            .getWorkspaceId().getLocaleId(), action
                            .getWorkspaceId().getProjectIterationId()
                            .getProjectSlug(), action.getWorkspaceId()
                            .getProjectIterationId().getIterationSlug());
        } catch (ZanataServiceException e) {
            throw new ActionException(e);
        }

        HTextFlow hTextFlow =
                textFlowDAO.findById(action.getTransUnitId().getId(), false);
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

    public List<TargetModuleID> list() {
    
        List<String> artifactTypeList = command.getArtifactTypeList();
       
        if (artifactTypeList == null || artifactTypeList.size() == 0) {
            throw new ActionException("Cannot perform list with "
                    + "empty artifact types");
        }
       
        Target[] targets = deploymentManager.getTargets();
        targets = clownfishHelper.filterTargets(targets,
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

                targetModuleIdList.addAll(list);
            }
           
            return targetModuleIdList;
        } catch (TargetException e) {
            throw new ActionException("Unable to perform list operation", e);
        }
    }
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

           
            // wait
            return waitTask();
           
        } catch (TargetException e) {
            throw new ActionException(
                    "Unable to perform undeploy operation", e);
        }
    }
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

                    progressListeners);
           
            return waitTask();
          
        } catch (TargetException e) {
            throw new ActionException("Unable to perform start operation", e);
        }
    }
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

                    progressListeners);
           
            return waitTask();
          
        } catch (TargetException e) {
            throw new ActionException("Unable to perform stop operation", e);
        }
    }
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

                    progressListeners);
           
            return waitTask();
          
        } catch (TargetException e) {
            throw new ActionException(
                    "Unable to perform redeploy operation", e);
        }
    }
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

    public boolean list() {
    
        List<String> artifactTypeList = command.getArtifactTypeList();
       
        if (artifactTypeList == null || artifactTypeList.size() == 0) {
            throw new ActionException("Cannot perform list with "
                    + "empty artifact types");
        }
       
        Target[] targets = deploymentManager.getTargets();
        targets = clownfishHelper.filterTargets(targets,
View Full Code Here

Examples of net.sourceforge.clownfish.core.ActionException

            showTargetModuleIdList(targetModuleIdList);

            return true;
        } catch (TargetException e) {
            throw new ActionException("Unable to perform list operation", e);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.