Package github.priyatam.springrest.utils.exception.PolicyInvalidException

Examples of github.priyatam.springrest.utils.exception.PolicyInvalidException.ErrorCode


    @RequestMapping(method = RequestMethod.POST, value = "/policy")
    @ResponseBody
    public ResponseEntity<Policy> save(final @RequestBody Policy policy) {

        // Input Sanitization / Validations
        ErrorCode code = ruleHelper.validatePolicy(policy);
        if (code != null) {
            throw new PolicyInvalidException(code);
        }

        logger.debug("Generating a Future Url ...");
View Full Code Here

TOP

Related Classes of github.priyatam.springrest.utils.exception.PolicyInvalidException.ErrorCode

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.