Package com.alibaba.citrus.webx.util.ErrorHandlerHelper

Examples of com.alibaba.citrus.webx.util.ErrorHandlerHelper.ExceptionCodeMapping


        assertEquals("myName", request.getAttribute("javax.servlet.error.servlet_name"));
    }

    @Test
    public void setError() {
        ExceptionCodeMapping mapping = new ExceptionCodeMapping() {
            public int getExceptionCode(Throwable exception) {
                if (exception instanceof FileNotFoundException) {
                    return 404;
                } else if (exception instanceof IOException) {
                    return 500;
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.webx.util.ErrorHandlerHelper.ExceptionCodeMapping

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.