Package com.scooterframework.web.controller

Examples of com.scooterframework.web.controller.NoViewFileException


                return getViewURI(defaultViewDir, actionOrView, null);
            }
            else {
              String errorMsg = "View file \"" + filePath + "\" does not exist.";
                log.error(errorMsg);
                throw new NoViewFileException(errorMsg, filePath);
            }
        }

        return uri;
    }
View Full Code Here

TOP

Related Classes of com.scooterframework.web.controller.NoViewFileException

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.