Package org.mojavemvc.exception

Examples of org.mojavemvc.exception.DefaultErrorHandlerFactory


public class TestDefaultErrorHandlerFactory {
   
    @Test
    public void createErrorHandler() throws Exception {

        DefaultErrorHandlerFactory factory = new DefaultErrorHandlerFactory();
        ErrorHandler errorHandler = factory.createErrorHandler();

        assertTrue(errorHandler instanceof DefaultErrorHandler);
    }
View Full Code Here

TOP

Related Classes of org.mojavemvc.exception.DefaultErrorHandlerFactory

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.