Package org.criticalfailure.torchlight.core.campaign

Examples of org.criticalfailure.torchlight.core.campaign.CampaignMetadataException


            enc.close();
        }
        catch(Exception e) {
            logger.error("Exception caught while trying to save campaign metadata: " + e.getLocalizedMessage(), e);

            throw new CampaignMetadataException(e);
        }
    }
View Full Code Here


            file.delete();
        }
        catch(Exception e) {
            logger.error("Exception caught while trying to remove campaign metadata: " + e.getLocalizedMessage(), e);

            throw new CampaignMetadataException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.criticalfailure.torchlight.core.campaign.CampaignMetadataException

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.