Package com.iggroup.oss.sample.web.controller.error

Examples of com.iggroup.oss.sample.web.controller.error.DuplicateReferenceError


    * @param dre the exception being handled
    */
   @AfterThrowing(pointcut = "execution (* com.iggroup.wt.referencerest.service.*.*(..))", throwing = "dre")
   public void handleDuplicateKeyException(DuplicateReferenceException dre) {
      throw new SampleException(
         new DuplicateReferenceError(dre.getReference()),
         HttpStatus.BAD_REQUEST);
   }
View Full Code Here

TOP

Related Classes of com.iggroup.oss.sample.web.controller.error.DuplicateReferenceError

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.