Package kr.inamatrix.danguscore.shared.exceptions

Examples of kr.inamatrix.danguscore.shared.exceptions.ValueIsOutOfRangeException


        }
       
        public VsPlayerModel build() throws ValueIsOutOfRangeException {
            if (_result == GameResult.WIN || _result == GameResult.LOSE) {
                if (_result.getPlayTime() <= 0 || _result.getPlayTime() > 25) {
                    throw new ValueIsOutOfRangeException(0, 25);
                }
            }
            return new VsPlayerModel(this);
        }
View Full Code Here

TOP

Related Classes of kr.inamatrix.danguscore.shared.exceptions.ValueIsOutOfRangeException

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.