Examples of MapException


Examples of org.solarus.editor.MapException

     * @throws MapException if a property is not valid
     */
    public void checkProperties() throws MapException {

        if (getWidth() != 16 && getHeight() != 16) {
            throw new MapException("The width or the height must be 16");
        }
    }
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.