Package com.jpoweredcart.common.exception

Examples of com.jpoweredcart.common.exception.TemplateMappingExceptionResolver


    return localeResolver;
  }
 
  @Bean
  public HandlerExceptionResolver mappingExceptionResolver(){
    TemplateMappingExceptionResolver exceptionResolver = new TemplateMappingExceptionResolver();
    Properties props = new Properties();//exception name = view name
    props.setProperty("com.jpoweredcart.common.exception.admin.UnauthorizedAdminException", "/admin/error/permission");
   
    props.setProperty("org.springframework.web.servlet.PageNotFound", "/error/pageNotFound");
    props.setProperty("org.springframework.dao.DataAccessException", "/error/dataAccessFailure");
    props.setProperty("org.springframework.transaction.TransactionException", "/error/dataAccessFailure");
    exceptionResolver.setExceptionMappings(props);
    exceptionResolver.setDefaultErrorView("uncaughtException");
    return exceptionResolver;
  }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.common.exception.TemplateMappingExceptionResolver

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.