Examples of BadMod


Examples of skyproc.exceptions.BadMod

            return plugin;
        } catch (MissingMaster m) {
            throw m;
        } catch (Exception e) {
            SPGlobal.logException(e);
            throw new BadMod("Ran into an exception, check SPGlobal.logs for more details.");
        } finally {
            SPGlobal.sync(false);
        }
    }
View Full Code Here

Examples of skyproc.exceptions.BadMod

    Mod(ModListing info, ByteBuffer headerInfo) throws Exception {
        this(info, true);
        SPGlobal.logMod(this, "MOD", "Parsing header");
        if (!headerInfo.hasRemaining()) {
            throw new BadMod(info.print() + " did not have a TES4 header.");
        }
        tes.parseData(headerInfo, this);
        if (tes.flags.get(Mod_Flags.MASTER.value) && (!info.getMasterTag())) {
            info.setFalseMaster(true);
        }
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.