Examples of CampaignStorageException


Examples of org.criticalfailure.torchlight.core.campaign.services.storage.CampaignStorageException

            alertService.addAlert(new Alert(Alert.Type.ERROR, this.getClass().getSimpleName(), Messages
                    .getString("campaign.storage.local.error.save.object_instance.text")
                    + ": " + e.getLocalizedMessage()));

            throw new CampaignStorageException("Unable to save object instance data: " + e.getLocalizedMessage(), e);
        }

        doSetStatus(CampaignStorageConstants.STORAGE_STATUS_ONLINE);
    }
View Full Code Here

Examples of org.criticalfailure.torchlight.core.campaign.services.storage.CampaignStorageException

            alertService.addAlert(new Alert(Alert.Type.ERROR, this.getClass().getSimpleName(), Messages
                    .getString("campaign.storage.local.error.save.object_property.text")
                    + ": " + e.getLocalizedMessage()));

            throw new CampaignStorageException("Unable to save object property data: " + e.getLocalizedMessage(), e);
        }

        doSetStatus(CampaignStorageConstants.STORAGE_STATUS_ONLINE);
    }
View Full Code Here

Examples of org.criticalfailure.torchlight.core.campaign.services.storage.CampaignStorageException

            alertService.addAlert(new Alert(Alert.Type.ERROR, this.getClass().getSimpleName(), Messages
                    .getString("campaign.storage.local.error.save.object_template.text")
                    + ": " + e.getLocalizedMessage()));

            throw new CampaignStorageException("Unable to save object template data: " + e.getLocalizedMessage(), e);
        }

        doSetStatus(CampaignStorageConstants.STORAGE_STATUS_ONLINE);
    }
View Full Code Here

Examples of org.criticalfailure.torchlight.core.campaign.services.storage.CampaignStorageException

            alertService.addAlert(new Alert(Alert.Type.ERROR, this.getClass().getSimpleName(), Messages
                    .getString("campaign.storage.local.error.save.participant.text")
                    + ": " + e.getLocalizedMessage()));

            throw new CampaignStorageException("Unable to save participant data: " + e.getLocalizedMessage(), e);
        }

        doSetStatus(CampaignStorageConstants.STORAGE_STATUS_ONLINE);
    }
View Full Code Here

Examples of org.criticalfailure.torchlight.core.campaign.services.storage.CampaignStorageException

            alertService.addAlert(new Alert(Alert.Type.ERROR, this.getClass().getSimpleName(), Messages
                    .getString("campaign.storage.local.error.save.resource.text")
                    + ": " + e.getLocalizedMessage()));

            throw new CampaignStorageException("Unable to save resource data: " + e.getLocalizedMessage(), e);
        }

        doSetStatus(CampaignStorageConstants.STORAGE_STATUS_ONLINE);
    }
View Full Code Here

Examples of org.criticalfailure.torchlight.core.campaign.services.storage.CampaignStorageException

                    new Object[] { campaign, });
        }
        catch(Exception e) {
            // logger.error("Exception caught while trying to instantiate campaign storage manager: " +
            // e.getLocalizedMessage(), e);
            throw new CampaignStorageException("Unable to create campaign local storage manager: "
                    + e.getLocalizedMessage(), 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.